AppTest.java 276 B

123456789101112131415161718
  1. package com.xuxueli;
  2. import org.junit.Test;
  3. import static org.junit.Assert.assertTrue;
  4. /**
  5. * Unit test for simple App.
  6. */
  7. public class AppTest {
  8. /**
  9. * Rigorous Test :-)
  10. */
  11. @Test
  12. public void shouldAnswerWithTrue() {
  13. assertTrue(true);
  14. }
  15. }