コード例 #1
0
ファイル: strlib.c プロジェクト: cs50/spl
void testStrlibModule(void) {
   testConcat();
   testIthChar();
   testSubString();
   testCharToString();
   testStringLength();
   testCopyString();
   testStringEqual();
   testStringEqualIgnoreCase();
   testStringCompare();
   testStartsWith();
   testEndsWith();
   testFindChar();
   testFindString();
   testFindLastChar();
   testFindLastString();
   testConvertToLowerCase();
   testConvertToUpperCase();
   testIntegerToString();
   testStringToInteger();
   testRealToString();
   testStringToReal();
   testTrim();
   testQuoteString();
   testQuoteHTML();
   testStringArrayLength();
   testSearchStringArray();
}
コード例 #2
0
ファイル: ut_AString_Utility.cpp プロジェクト: achacha/AOS
int ut_AString_Utility()
{
  std::cerr << "ut_AString_Utility" << std::endl;

  int iRet = 0x0;

  testBasics(iRet);
  NEWLINE_UNIT_TEST();
  testConversion(iRet);
  NEWLINE_UNIT_TEST();
  testTrim(iRet);
  NEWLINE_UNIT_TEST();
  testSplit(iRet);
  NEWLINE_UNIT_TEST();
  testWrap(iRet);
  NEWLINE_UNIT_TEST();
  testJustify(iRet);

  return iRet;
}
コード例 #3
0
void testsMisc(void) {
    testTrim();
}