Match the numbers with annotations to make the following testing class correct.
{1}
{2}({"/schema.sql", "/data.sql"})
class ApplicationTests {
{3}
private UserRepository userRepository;
{4}
void testDefiningSizeOfTable() {
User user = userRepository.findByName("Jack");
assertEquals("Jack", user.getName());
}
}