Delete BoatTest.java
This commit is contained in:
parent
f9d3687435
commit
5b4d0fb583
|
@ -1,23 +0,0 @@
|
|||
package com.baeldung.beaninjectiontypes;
|
||||
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = Config.class)
|
||||
public class BoatTest {
|
||||
|
||||
@Autowired
|
||||
Boat boat;
|
||||
|
||||
@Test
|
||||
public void givenAutowired_whenOnSetter_thenInjected() {
|
||||
assertNotNull(boat);
|
||||
assertNotNull(boat.getEngine());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue