Skip to content

Commit

Permalink
Fix jacocoRootReport
Browse files Browse the repository at this point in the history
by adding a dummy unit test for minidns-repl.
  • Loading branch information
Flowdalic committed Feb 16, 2016
1 parent 1fadfd9 commit 819b740
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions minidns-repl/src/test/java/de/measite/minidns/repl/ReplTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Copyright 2015 the original author or authors
*
* This software is licensed under the Apache License, Version 2.0,
* the GNU Lesser General Public License version 2 or later ("LGPL")
* and the WTFPL.
* You may choose either license to govern your use of this software only
* upon the condition that you accept all of the terms of either
* the Apache License 2.0, the LGPL 2.1+ or the WTFPL.
*/
package de.measite.minidns.repl;

import org.junit.Test;

public class ReplTest {
/**
* Just here to ensure jacoco is not complaining.
*/
@Test
public void emptyTest() {
}
}

0 comments on commit 819b740

Please sign in to comment.