/
nikolaypol
/
project_task
Обзор
Документация
Войти
/
nikolaypol
/
project_task
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/test/java/org/example/AppTest.java
38 строк
639 B
np
first_commit
08 ноя 2025, 06:32
08 ноя 2025, 06:32
8a0a0cd
Код
Авторство
О чём код?
package org.example; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class AppTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public AppTest( String testName ) { super( testName ); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( AppTest.class ); } /** * Rigourous Test :-) */ public void testApp() { assertTrue( true ); } }