From 59ec55c317849ee5a1e399cffaddfd62ddc152f9 Mon Sep 17 00:00:00 2001 From: "Alberto J. Rubio" Date: Mon, 1 Aug 2016 11:51:34 +0200 Subject: [PATCH] Add empty test --- pom.xml | 18 ++++++++++++++++++ .../java/io/corbel/lib/config/EmptyTest.java | 16 ++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 src/test/java/io/corbel/lib/config/EmptyTest.java diff --git a/pom.xml b/pom.xml index fc36b37..aa14520 100644 --- a/pom.xml +++ b/pom.xml @@ -53,6 +53,24 @@ spring-context 4.1.7.RELEASE + + org.easytesting + fest-assert-core + 2.0M10 + test + + + junit + junit + 4.12 + test + + + org.mockito + mockito-all + 1.9.5 + test + diff --git a/src/test/java/io/corbel/lib/config/EmptyTest.java b/src/test/java/io/corbel/lib/config/EmptyTest.java new file mode 100644 index 0000000..b744f39 --- /dev/null +++ b/src/test/java/io/corbel/lib/config/EmptyTest.java @@ -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); + } +}