Skip to content

Commit

Permalink
Add test which reproduces classgraph#277
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Nov 1, 2018
1 parent 6307200 commit a49422e
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package io.github.classgraph.issues.issue277;

import io.github.classgraph.ClassGraph;
import org.junit.Test;

/**
* https://github.com/classgraph/classgraph/issues/277
*/
public class Issue227Test {

@Test
public void testNoArgsBlacklistLibOrExtJars() {
new ClassGraph().blacklistLibOrExtJars();
}

@Test
public void testNoArgsWhitelistLibOrExtJars() {
new ClassGraph().whitelistLibOrExtJars();
}
}

0 comments on commit a49422e

Please sign in to comment.