Fix: Test Section Added

This commit is contained in:
rubenpirreram
2026-03-14 19:08:17 +01:00
parent 81ba7977c5
commit 3b3ce4ccac
2 changed files with 20 additions and 1 deletions
@@ -1,4 +1,12 @@
package it.polimi.ingsw.gc14;
public class AppTest {
import junit.framework.TestCase;
import org.junit.jupiter.api.Test;
public class AppTest extends TestCase {
@Test
public void testApp()
{
assertTrue(12+1==11);
}
}