]> SALOME platform Git repositories - modules/med.git/blob - src/MEDMEM/tests/testUMedException.cxx
Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[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
30 int main (int argc, char ** argv)
31 {
32         MEDEXCEPTION a = MEDEXCEPTION("test med exception");
33         cout << a << endl;;
34         cout << a.what() << endl;;
35
36         MEDEXCEPTION b(a);
37         cout << b << endl;
38         cout << b.what() << endl;;
39
40         MEDEXCEPTION c("test med exception",argv[0],14);
41         cout << c << endl;
42         cout << c.what() << endl;;
43
44         STRING msgErr;
45         msgErr << "ESSAI::ESSAI()!  "<< 4 << "ieme essai ";
46         cout << MEDEXCEPTION (LOCALIZED(msgErr)).what() << endl ;
47
48         const char * LOC = "toto" ;
49         cout << MEDEXCEPTION (LOCALIZED(STRING(LOC)<<" et titi")).what() << endl ;
50
51         return EXIT_SUCCESS;    
52
53 };