*/
public void testCloning() {
ValueAxis a1 = new NumberAxis("Test");
ValueAxis a2 = null;
try {
a2 = (NumberAxis) a1.clone();
}
catch (CloneNotSupportedException e) {
System.err.println("ValueAxisTests.testCloning: failed to clone.");
}
assertTrue(a1 != a2);