Merge branch 'master' of https://github.com/juliuskrah/tutorials into juliuskrah-master
This commit is contained in:
commit
8066195a85
|
@ -10,4 +10,5 @@ public class DemoApplication {
|
||||||
System.setProperty("spring.config.name", "demo");
|
System.setProperty("spring.config.name", "demo");
|
||||||
SpringApplication.run(DemoApplication.class, args);
|
SpringApplication.run(DemoApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,5 +36,4 @@ public class Foo implements Serializable {
|
||||||
public void setName(String name) {
|
public void setName(String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,5 +14,4 @@ public class DemoApplicationTests {
|
||||||
@Test
|
@Test
|
||||||
public void contextLoads() {
|
public void contextLoads() {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,4 +30,5 @@ public class FooRepositoryTest extends DemoApplicationTests {
|
||||||
assertThat(foo, notNullValue());
|
assertThat(foo, notNullValue());
|
||||||
assertThat(foo.getId(), is(2));
|
assertThat(foo.getId(), is(2));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue