Skip to content

Commit

Permalink
simple test to check jacoco coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Nov 10, 2016
1 parent b3c2487 commit 4af62d1
Showing 1 changed file with 20 additions and 0 deletions.
@@ -0,0 +1,20 @@
package com.examples.exercise;

import static org.junit.Assert.*;

import org.junit.Test;

// TODO: remove this when there are other tests in the project
public class StudentTest {

@Test
public void test() {
// test only for checking jacoco report
Student student = new Student();
student.setId("id");
student.setName("name");
assertEquals("id", student.getId());
assertEquals("name", student.getName());
}

}

0 comments on commit 4af62d1

Please sign in to comment.