24 lines
485 B
Java
24 lines
485 B
Java
package com.release11.klaus.controller;
|
|
|
|
import com.release11.klaus.model.Event;
|
|
import com.release11.klaus.model.EventRequestDto;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Stream;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class KlausMvcControllerTest {
|
|
|
|
@Test
|
|
void showHome() {
|
|
|
|
|
|
}
|
|
}
|