Issue #5129 - Fleshing out glob testcase a bit more
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
52f5218900
commit
5b8c343a2b
|
@ -40,6 +40,7 @@ import org.junit.jupiter.params.provider.MethodSource;
|
|||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.hamcrest.Matchers.startsWith;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
|
||||
public class ResourceTest
|
||||
{
|
||||
|
@ -291,5 +292,6 @@ public class ResourceTest
|
|||
|
||||
String globReference = testDir.toAbsolutePath().toString() + File.separator + '*';
|
||||
Resource globResource = Resource.newResource(globReference);
|
||||
assertNotNull(globResource, "Should have produced a Resource");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue