Java : How to do a Junit test ?

  Set the dependency in your pom.xml file:
<!-- 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 : 
public class FindAccount {
@Test
public void findAccountTest(){
   String name = "Camila Macedo";
   Account account = AccountContext.findByName(name);
   Assert.assertNotNull(account);
}
}

Leave a comment