Skip to content

Commit

Permalink
Removed tests for now
Browse files Browse the repository at this point in the history
The junit dependency doubles the JAR size.
  • Loading branch information
haselkern committed Dec 7, 2017
1 parent 0b8b16b commit 3a4ffdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -27,7 +27,7 @@ dependencies {
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.2'

// https://mvnrepository.com/artifact/junit/junit
compile group: 'junit', name: 'junit', version: '4.12'
// testCompile group: 'junit', name: 'junit', version: '4.12'

}

Expand Down
@@ -1,9 +1,9 @@
package com.haselkern.java.arbiprint;
package com.haselkern.java.arbiprint.test;

import org.junit.Test;
import com.haselkern.java.arbiprint.Version;

public class VersionTest {
@Test

public void isNewerVersion() throws Exception {
assert Version.isNewerVersion("v1.0", "v1.1");
assert Version.isNewerVersion("1.0", "v1.1");
Expand Down

0 comments on commit 3a4ffdb

Please sign in to comment.