15 lines
326 B
Java
15 lines
326 B
Java
|
package xyz.mcutils.backend.config;
|
||
|
|
||
|
import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest;
|
||
|
import org.springframework.boot.test.context.TestConfiguration;
|
||
|
|
||
|
/**
|
||
|
* Test configuration for
|
||
|
* a mock Redis server.
|
||
|
*
|
||
|
* @author Braydon
|
||
|
*/
|
||
|
@TestConfiguration @DataMongoTest
|
||
|
public class TestMongoConfig {
|
||
|
|
||
|
}
|