Salome HOME
correct a small bug appearing when using the gcc 3.2.1.
[modules/med.git] / src / MEDMEM / tests / testUMedException.cxx
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19 //
20 //
21 //
22 //  File   : testUMedException.cxx
23 //  Module : MED
24
25 using namespace std;
26 #include <cstdlib>
27 #include "MEDMEM_STRING.hxx"
28 #include "MEDMEM_Exception.hxx"
29 using namespace MEDMEM;
30
31 int main (int argc, char ** argv)
32 {
33         MEDEXCEPTION a = MEDEXCEPTION("test med exception");
34         cout << a << endl;;
35         cout << a.what() << endl;;
36
37         MEDEXCEPTION b(a);
38         cout << b << endl;
39         cout << b.what() << endl;;
40
41         MEDEXCEPTION c("test med exception",argv[0],14);
42         cout << c << endl;
43         cout << c.what() << endl;;
44
45         STRING msgErr;
46         msgErr << "ESSAI::ESSAI()!  "<< 4 << "ieme essai ";
47         cout << MEDEXCEPTION (LOCALIZED(msgErr)).what() << endl ;
48
49         const char * LOC = "toto" ;
50         cout << MEDEXCEPTION (LOCALIZED(STRING(LOC)<<" et titi")).what() << endl ;
51
52         return EXIT_SUCCESS;    
53
54 };