Chcekpoint - needs docs cleaning and tests

This commit is contained in:
Filip Izydorczyk
2021-01-04 18:10:14 +01:00
parent a6e6618202
commit 2141f35e3f
7 changed files with 155 additions and 20 deletions

View File

@ -1,5 +1,6 @@
package com.plannaplan.entities;
import static org.junit.Assert.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.sql.Date;
@ -138,4 +139,24 @@ public class AppConfigTest {
assertTrue(config.getCurrentState() == AppState.SECOND_TOUR);
}
@Test
public void shouldReturnFirstStartDatesCorns() {
assertFalse(false);
}
@Test
public void shouldReturnSecondStartDatesCorns() {
assertFalse(false);
}
@Test
public void shouldReturnFirstEndDatesCorns() {
assertFalse(false);
}
@Test
public void shouldReturnSecondEndDatesCorns() {
assertFalse(false);
}
}