Changeset 384 for library/tests/test_user_info.cpp
- Timestamp:
- 06/19/09 10:17:25 (16 years ago)
- Location:
- library/tests
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
library/tests/test_user_info.cpp
r377 r384 1 1 2 2 #include <string> 3 #include " user_info.h"3 #include "base/user_info.h" 4 4 5 5 using std::string; … … 197 197 { 198 198 //////////////////////////////////// LOADING //////////////////////////////// 199 UI_File in("test UI_in.cfg");199 UI_File in("test_user_info_input.cfg"); 200 200 Transport *pepikovo = UI::build<Transport>(in, "pepikovo"); 201 201 cout << "pepikovo: " << pepikovo->to_string() << endl; … … 208 208 Transport *kati = UI::build<Transport>(in, "kati"); 209 209 cout << "kati: " << kati->to_string() << endl; 210 cout << endl << "press any key to continue..." << endl; 210 211 getchar(); 211 212 … … 224 225 225 226 cout << "all the transport means were saved correctly" << endl; 227 cout << endl << "press any key to end the program" << endl; 226 228 getchar(); 227 229 return 0;