Compléter fill in the blanksVersion en ligne fill in the blank game on spring test par Shubham Sapate 1 @ContextConfiguration @Autowired locations @RunWith Assert complete the below code for spring test ? ( SpringJUnit4ClassRunner . class ) ( = " / com / accenture / lkm / resources / my_springbean . xml " ) public class TestNewEmp { private Employee emp ; @Test public void testEmp ( ) { . assertTrue ( emp ! = null ) ; } } 2 SpringJUnit4ClassRunner AFTER_METHOD methodMode @DirtiesContext complete below code for dirty context ? @RunWith ( . class ) @ContextConfiguration ( locations = " / com / accenture / lkm / resources / my_springbean . xml " ) public class TestEmployeeClassDi { @Autowired private Employee employee ; ( = MethodMode . ) @Test public void testEmployeeSalary ( ) { System . out . println ( " * * * * * * * * * * test employee salary * * * * * * * * * * " ) ; Assert . assertFalse ( employee . getSalary ( ) ! = 200000 ) ; } }