mobi_reader/MobiReader/test/tests/UnzippingJUnitTest.java

46 lines
860 B
Java

package tests;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
public class UnzippingJUnitTest {
public UnzippingJUnitTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
@Test
public void testBullshit() {
assertEquals("10 equals 11", 10, 11);
}
@Test
public void testTruth() {
assertEquals("10 does not equal 10", 10, 10);
}
// TODO add test methods here.
// The methods must be annotated with annotation @Test. For example:
//
// @Test
// public void hello() {}
}