From e88e3e9727da7fdedd69217313e38f14c474bb93 Mon Sep 17 00:00:00 2001 From: dirk Date: Sun, 10 Jan 2016 10:02:00 +0100 Subject: [PATCH] Removed test for 'view'. --- Magick++/tests/attributes.cpp | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/Magick++/tests/attributes.cpp b/Magick++/tests/attributes.cpp index 67ba3202a5..11f70ba692 100644 --- a/Magick++/tests/attributes.cpp +++ b/Magick++/tests/attributes.cpp @@ -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 //