Files
getting-started/aws/springcloudrds/src/test/java/io/pratik/springcloudrds/SpringcloudrdsApplicationTests.java
2021-05-13 15:56:32 +04:00

20 lines
456 B
Java

package io.pratik.springcloudrds;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class SpringcloudrdsApplicationTests {
@Autowired
private SystemRepository systemRepository;
@Test
void testCurrentDate() {
String currentDate = systemRepository.getCurrentDate();
System.out.println("currentDate "+currentDate);
}
}