/
bulkin
/
JavaCheckers
Обзор
Документация
Войти
/
bulkin
/
JavaCheckers
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/test/java/com/checkers/GameTest.java
38 строк
643 B
Home Baton
init
24 апр 2026, 11:11
24 апр 2026, 11:11
1968376
Код
Авторство
О чём код?
package com.checkers; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class GameTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public GameTest( String testName ) { super( testName ); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( GameTest.class ); } /** * Rigourous Test :-) */ public void testApp() { assertTrue( true ); } }