Skip to content

Instantly share code, notes, and snippets.

@jonbodner
Last active April 27, 2019 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jonbodner/eb21847d9e2232c8089c99220df58cc7 to your computer and use it in GitHub Desktop.
Save jonbodner/eb21847d9e2232c8089c99220df58cc7 to your computer and use it in GitHub Desktop.
@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