AppTest.java 283 B

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