Last active
April 27, 2019 22:54
-
-
Save jonbodner/eb21847d9e2232c8089c99220df58cc7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(SpringRunner.class) | |
@SpringBootTest | |
public class DemoApplicationTests { | |
@Autowired | |
ApplicationContext ac; | |
@Test | |
public void contextLoads() { | |
Calculator calculator = ac.getBean(Calculator.class); | |
assertTrue(calculator instanceof CalculatorImpl); | |
CalcController calcController = ac.getBean(CalcController.class); | |
assertNotNull(calcController); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment