20 lines
292 B
Java
20 lines
292 B
Java
package mops.gruppen2.infrastructure.controller;
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
class GroupCreationControllerTest {
|
|
|
|
@BeforeEach
|
|
void setUp() {
|
|
}
|
|
|
|
@Test
|
|
void getCreate() {
|
|
}
|
|
|
|
@Test
|
|
void postCreateOrga() {
|
|
}
|
|
}
|