Added test to implement and some tests failed rightnow

This commit is contained in:
Filip Izydorczyk
2020-10-19 12:33:54 +02:00
parent 67c8b9bf25
commit 4b07793849
6 changed files with 62 additions and 5 deletions

View File

@ -0,0 +1,22 @@
package com.plannaplan.controllers;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.Test;
public class UsersControllerTest {
@Test
public void shouldRestrun200OK() {
assertTrue(false);
}
@Test
public void shouldRestrunForbiden() {
assertTrue(false);
}
@Test
public void shouldFailedDueToMissingParam() {
assertTrue(false);
}
}