You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
318 B
22 lines
318 B
|
|
var x = 10;
|
|
var y = 10;
|
|
|
|
var point = new Point(x,y);
|
|
var point2 = new Point();
|
|
point2.setX(point.x());
|
|
point2.setY(point.y());
|
|
|
|
if( point.x() != x )
|
|
{
|
|
println( "X not "+ x +" " + point.x());
|
|
exit(1);
|
|
}
|
|
|
|
if( point.y() != y )
|
|
{
|
|
println( "Y not "+ y +" " + point.y());
|
|
exit(1);
|
|
}
|
|
|
|
println( "All tests passed"); |