Skip to content

Commit

Permalink
Add empty test
Browse files Browse the repository at this point in the history
  • Loading branch information
yebenes committed Aug 1, 2016
1 parent 341f75b commit 59ec55c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,24 @@
<artifactId>spring-context</artifactId>
<version>4.1.7.RELEASE</version>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<version>2.0M10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
16 changes: 16 additions & 0 deletions src/test/java/io/corbel/lib/config/EmptyTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package io.corbel.lib.config;

import org.junit.Test;

import static junit.framework.TestCase.assertTrue;

/**
* @author Alberto J. Rubio
*/
public class EmptyTest {

@Test
public void testEmpty() {
assertTrue(true);
}
}

0 comments on commit 59ec55c

Please sign in to comment.