Commit 9e200336 authored by Siva Rama Krishna's avatar Siva Rama Krishna

initial build failure

parent dfcb446f
......@@ -13,7 +13,7 @@ import com.altimetrik.ee.demo.service.ComponentDetailsService;
@EnableAsync
@EnableScheduling
@SpringBootApplication(scanBasePackages = { "com.altimetrik" })
@PropertySources({ @PropertySource(value = "classpath:db-config.properties"),
@PropertySources({ @PropertySource(value = "classpath:db-config.properties", ignoreResourceNotFound = true),
@PropertySource(value = "classpath:${k8s.db.env}.properties", ignoreResourceNotFound = true) })
public class Application {
......
package com.altimetrik.ee.demo.tests;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class ApplicationTests {
@Test
public void contextLoads() {
public void appTest() {
assertTrue(true);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment