Exemplo n.º 1
0
Arquivo: main.cpp Projeto: jmfb/Com
int main()
{
	TestLong();
	TestString();
	TestWideString();
	TestBool();
	TestDate();
	TestVariant();
	TestInterface();
	TestSmartPointer();
	TestError();
	return 0;
}
Exemplo n.º 2
0
bool C_coretestBase::TestBool(int callbackID, const Json::Value& parameters)
{
    Json::Value testBool_JSON;
    FetchObject(parameters, "testBool", testBool_JSON);

    bool testBool;
    FetchBool(testBool_JSON, testBool);



    TestBool(callbackID, testBool);
    return true;
}
Exemplo n.º 3
0
void test_member_data_value_function()
  {
  
  p_member_data_value_class tcl;
  
  TestCharacter(tcl);
  TestInt(tcl);
  TestDouble(tcl);
  TestBool(tcl);
  TestPointer(tcl);
  TestEnum(tcl);
  TestPod(tcl);
  
  }
Exemplo n.º 4
0
////////////// MAIN //////////////////
/////////
int main(){

  TestAddition();
  TestBool();
   
}