<!-- Test --><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.10</version><scope>test</scope></dependency> Your JUnit's tests will be create in " src / test / ... ":
Use the annotation :@Test
Example :
publicclassFindAccount{
@Test
public void findAccountTest(){
String name = "Camila Macedo";
Account account = AccountContext.findByName(name);
Assert.assertNotNull(account);
}