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 Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s