int main() { TestLong(); TestString(); TestWideString(); TestBool(); TestDate(); TestVariant(); TestInterface(); TestSmartPointer(); TestError(); return 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; }
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); }
////////////// MAIN ////////////////// ///////// int main(){ TestAddition(); TestBool(); }