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.
23 lines
341 B
23 lines
341 B
|
|
var w = 25;
|
|
var h = 25;
|
|
|
|
var size = new Size(w,h);
|
|
var size2 = new Size();
|
|
size2.setHeight(size.height());
|
|
size2.setWidth(size.width());
|
|
|
|
if( size.width() != w )
|
|
{
|
|
println( "W not "+ w +" " + size.width());
|
|
exit(1);
|
|
}
|
|
|
|
if( size.height() != h )
|
|
{
|
|
println( "H not "+ h +" " + size.height());
|
|
exit(1);
|
|
}
|
|
|
|
println( "All tests passed");
|