Fill in the Blanks fill in the blanksOnline version fill in the blank game on spring test by Shubham Sapate 1 @Autowired @ContextConfiguration Assert locations @RunWith 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 AFTER_METHOD @DirtiesContext SpringJUnit4ClassRunner methodMode 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 ) ; } }