backend/restservice/src/test/java/com/plannaplan/controllers/UsersControllerTest.java

23 lines
420 B
Java
Raw Normal View History

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);
}
}