Some checks failed
Pull Request Labeler / labeler (pull_request_target) Successful in 8s
CI / Get Changed Files (pull_request) Successful in 12s
Setup Gitea Tea CLI / setup-and-login (pull_request) Failing after 28s
CI / oxlint (pull_request) Successful in 23s
CI / eslint (pull_request) Successful in 32s
CI / prettier (pull_request) Successful in 31s
CI / test-build (pull_request) Successful in 1m3s
CI / Checkstyle Main (pull_request) Successful in 1m37s
CI / Docker frontend validation (pull_request) Failing after 1m50s
CI / Docker backend validation (pull_request) Successful in 2m48s
CI / Backend Tests (pull_request) Failing after 4m3s
23 lines
No EOL
510 B
Java
23 lines
No EOL
510 B
Java
package de.szut.casino.slots;
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.mockito.InjectMocks;
|
|
import org.mockito.MockitoAnnotations;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class SlotControllerTest {
|
|
@InjectMocks
|
|
private SlotController controller;
|
|
|
|
@BeforeEach
|
|
void setUp() {
|
|
MockitoAnnotations.openMocks(this);
|
|
}
|
|
|
|
@Test
|
|
void testControllerNotNull() {
|
|
assertNotNull(controller);
|
|
}
|
|
} |