Spaces:
Sleeping
Sleeping
File size: 536 Bytes
f5cd2d3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | package com.rods.backtestingstrategies;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest(
properties = {
"spring.autoconfigure.exclude=" +
"org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration," +
"org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration"
}
)
class BacktestingStrategiesApplicationTests {
@Test
void contextLoads() {
}
}
|