This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
casino/backend/src/test/java/de/szut/casino/slots/SlotControllerTest.java
csimonis aa18bf15f1
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
test: add backend tests for various controllers and services
2025-05-28 11:06:08 +02:00

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