68 lines
916 B
Java
68 lines
916 B
Java
package mops.gruppen2.infrastructure.controller;
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
class GroupDetailsControllerTest {
|
|
|
|
@BeforeEach
|
|
void setUp() {
|
|
}
|
|
|
|
@Test
|
|
void getDetailsPage() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsJoin() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsLeave() {
|
|
}
|
|
|
|
@Test
|
|
void getDetailsHistory() {
|
|
}
|
|
|
|
@Test
|
|
void getDetailsExportHistoryPlain() {
|
|
}
|
|
|
|
@Test
|
|
void getDetailsExportHistorySql() {
|
|
}
|
|
|
|
@Test
|
|
void getDetailsExportMembers() {
|
|
}
|
|
|
|
@Test
|
|
void getDetailsEdit() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsEditMeta() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsEditUserLimit() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsEditCsv() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsEditRole() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsEditDelete() {
|
|
}
|
|
|
|
@Test
|
|
void postDetailsEditDestroy() {
|
|
}
|
|
}
|