package org.geotools.resources
A set of helper classes for Geotools implementation;
Do not use!.
This package is for internal use only. Classes in this package may change
in incompatible ways in any future version.
Provides access to
test-data directories associated with JUnit tests.
We have chosen "
test-data " to follow the javadoc "
doc-files " convention
of ensuring that data directories don't look anything like normal java packages.
Example:
class MyClass {
public void example() {
Image testImage = new ImageIcon(TestData.url(this, "test.png")).getImage();
Reader reader = TestData.openReader(this, "script.xml");
// ...