package com.thebluealliance.androidclient.fragments.match;
import com.thebluealliance.androidclient.DefaultTestRunner;
import com.thebluealliance.androidclient.fragments.framework.BaseFragmentTest;
import com.thebluealliance.androidclient.fragments.framework.FragmentTestDriver;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(DefaultTestRunner.class)
public class MatchInfoFragmentTest extends BaseFragmentTest {
MatchInfoFragment mFragment;
@Before
public void setUp() {
mFragment = MatchInfoFragment.newInstance("2015cthar_f1m1");
}
@Test
public void testLifecycle() {
FragmentTestDriver.testLifecycle(mFragment);
}
}