2024-04-18 13:55:02 +01:00
|
|
|
package xyz.mcutils.backend.config;
|
|
|
|
|
2024-04-18 14:22:10 +01:00
|
|
|
import org.junit.jupiter.api.extension.ExtendWith;
|
2024-04-18 13:55:02 +01:00
|
|
|
import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest;
|
|
|
|
import org.springframework.boot.test.context.TestConfiguration;
|
2024-04-18 14:22:10 +01:00
|
|
|
import org.springframework.test.context.junit.jupiter.SpringExtension;
|
2024-04-18 13:55:02 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test configuration for
|
|
|
|
* a mock Redis server.
|
|
|
|
*
|
|
|
|
* @author Braydon
|
|
|
|
*/
|
2024-04-18 14:22:10 +01:00
|
|
|
@TestConfiguration
|
|
|
|
@DataMongoTest()
|
|
|
|
@ExtendWith(SpringExtension.class)
|
|
|
|
public class TestMongoConfig { }
|