Show
Ignore:
Timestamp:
06/19/09 11:14:47 (15 years ago)
Author:
mido
Message:

possibly broken? 4th part

Location:
library/tests
Files:
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • library/tests/test_user_info.cpp

    r377 r386  
    11 
    22#include <string> 
    3 #include "user_info.h" 
     3#include "base/user_info.h" 
    44 
    55using std::string; 
     
    197197{ 
    198198  //////////////////////////////////// LOADING //////////////////////////////// 
    199   UI_File in("testUI_in.cfg"); 
     199  UI_File in("test_user_info_input.cfg"); 
    200200  Transport *pepikovo = UI::build<Transport>(in, "pepikovo"); 
    201201  cout << "pepikovo: " << pepikovo->to_string() << endl; 
     
    208208  Transport *kati = UI::build<Transport>(in, "kati"); 
    209209  cout << "kati: " << kati->to_string() << endl; 
     210  cout << endl << "press any key to continue..." << endl; 
    210211  getchar(); 
    211212 
     
    224225 
    225226  cout << "all the transport means were saved correctly" << endl; 
     227  cout << endl << "press any key to end the program" << endl; 
    226228  getchar(); 
    227229  return 0;