Simpler windows resource test
This commit is contained in:
parent
de42eafdcd
commit
ec4dfc211f
|
@ -464,9 +464,22 @@ public class ResourceTest
|
||||||
// This test is intended to run only on Windows platform
|
// This test is intended to run only on Windows platform
|
||||||
assumeTrue(OS.IS_WINDOWS);
|
assumeTrue(OS.IS_WINDOWS);
|
||||||
|
|
||||||
|
String path = __userURL.toURI().getPath().replace('/','\\')+"ResourceTest.java";
|
||||||
|
System.err.println(path);
|
||||||
|
|
||||||
|
Resource resource = Resource.newResource(path, false);
|
||||||
|
System.err.println(resource);
|
||||||
|
assertTrue(resource.exists());
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
String uncPath = "\\\\127.0.0.1"+__userURL.toURI().getPath().replace('/','\\').replace(':','$')+"ResourceTest.java";
|
String uncPath = "\\\\127.0.0.1"+__userURL.toURI().getPath().replace('/','\\').replace(':','$')+"ResourceTest.java";
|
||||||
|
System.err.println(uncPath);
|
||||||
|
|
||||||
Resource uncResource = Resource.newResource(uncPath, false);
|
Resource uncResource = Resource.newResource(uncPath, false);
|
||||||
|
System.err.println(uncResource);
|
||||||
assertTrue(uncResource.exists());
|
assertTrue(uncResource.exists());
|
||||||
|
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue