Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Failing after 25s
17 lines
484 B
Java
17 lines
484 B
Java
package xyz.mcutils.backend.config;
|
|
|
|
import org.junit.jupiter.api.extension.ExtendWith;
|
|
import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest;
|
|
import org.springframework.boot.test.context.TestConfiguration;
|
|
import org.springframework.test.context.junit.jupiter.SpringExtension;
|
|
|
|
/**
|
|
* Test configuration for
|
|
* a mock Redis server.
|
|
*
|
|
* @author Braydon
|
|
*/
|
|
@TestConfiguration
|
|
@DataMongoTest()
|
|
@ExtendWith(SpringExtension.class)
|
|
public class TestMongoConfig { } |