123456789101112131415161718192021 |
- package com.sf;
- import static org.junit.Assert.assertTrue;
- import org.junit.Test;
- /**
- * Unit test for simple App.
- */
- public class AppTest
- {
- /**
- * Rigorous Test :-)
- */
- @Test
- public void shouldAnswerWithTrue()
- {
- System.out.println("测试编译完成...");
- assertTrue( true );
- }
- }
|