Show
Ignore:
Timestamp:
08/10/08 13:39:25 (5 months ago)
Author:
liamstask
Message:

- more testing of projectinfo/builder

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mcbuilder/trunk/tests/TestBuilder.cpp

    r800 r801  
    1717 
    1818#include "TestBuilder.h" 
     19#include "ProjectInfo.h" 
    1920 
    2021#define TEST_PROJECT "resources/examples/Input-Output/AinToServo" 
     
    175176   
    176177  // now let's change a few things in the config file, and confirm that we need to update it 
    177 //  QVERIFY(configFile.open(QFile::Text)); 
    178 //  QTextStream in(&configFile); 
    179 //   
    180 //  configFile.close(); 
     178  ProjectInfo* pi = window->projInfo; 
     179  pi->setHeapSize( pi->heapsize() + 100 ); 
     180  QVERIFY( builder->compareConfigFile(currentProjectPath()) == true ); 
     181   
    181182} 
    182183