X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestVR.cxx;h=36710c63685b81c70ea15c84e227f1b1330b577a;hb=54fadb4c545adbec700c83306407a8fb75c9e844;hp=8fa9348d4696ec3c3b6940f78052bbfd60897cc1;hpb=5ce83ba7ad93f458923e5f3b7aa406651db90637;p=gdcm.git diff --git a/Testing/TestVR.cxx b/Testing/TestVR.cxx index 8fa9348d..36710c63 100644 --- a/Testing/TestVR.cxx +++ b/Testing/TestVR.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestVR.cxx,v $ Language: C++ - Date: $Date: 2004/11/16 04:28:20 $ - Version: $Revision: 1.2 $ + Date: $Date: 2005/02/02 10:05:26 $ + Version: $Revision: 1.7 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,11 +19,29 @@ int TestVR(int , char *[]) { - gdcm::VR vr; - // There should be 16 entries - vr.Print( std::cout ); - vr.IsVROfGdcmStringRepresentable( "" ); - vr.IsVROfGdcmBinaryRepresentable( "" ); + gdcm::VR *tempVrDict=0; + std::cout << "------ Test Default VR Dictionary : ----------" << std::endl; + // Just to improve test coverage: + // tempVrDict = new gdcm::Dict("dummyFileNameThatDoesntExist"); + // tempVrDict->Print(); + // std::cout << "----- end Test Default VR Dictionary : -----" << std::endl; + // Lets delete it. + delete tempVrDict; + + gdcm::VR *vr = new gdcm::VR(); + + // There should be 16 entries ... + vr->Print( std::cout ); + + vr->IsVROfStringRepresentable( "PN" ); + vr->IsVROfStringRepresentable( "FD" ); + + vr->IsVROfBinaryRepresentable( "FD" ); + vr->IsVROfBinaryRepresentable( "PN" ); + + vr->IsVROfSequence( "" ); + vr->IsVROfSequence( "SQ" ); + delete vr; return 0; }