Removed test for 'view'.

This commit is contained in:
dirk
2016-01-10 10:02:00 +01:00
parent 4547fa2bdb
commit e88e3e9727
-26
View File
@@ -1373,32 +1373,6 @@ int main( int /*argc*/, char ** argv)
<< ", verbose is not false as expected" << endl;
}
//
// view
//
if ( image.view().length() != 0 )
{
++failures;
cout << "Line: " << __LINE__
<< ", view default is not empty string as expected" << endl;
}
image.view("How now brown cow?");
if ( image.view() != "How now brown cow?" )
{
++failures;
cout << "Line: " << __LINE__
<< ", view set/get failed" << endl;
}
image.view( string() );
if ( image.view().length() != 0 )
{
++failures;
cout << "Line: " << __LINE__
<< ", view failed to unset" << endl;
}
//
// x11Display
//