blob: 2f5e9598e03eda1cd1c0d32af5e4287386b254ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// ============================================================================
// $Id$
//
// = LIBRARY
// tests
//
// = FILENAME
// SString_Test.cpp
//
// = DESCRIPTION
// This is a simple test that illustrates the use of ACE_CString
// and ACE_WString. No command line arguments are needed to run
// the test.
//
// = AUTHOR
// Prashant Jain
//
// ============================================================================
#include "ace/SString.h"
#include "test_config.h"
int
main (int, char *[])
{
ACE_START_TEST ("SString_Test");
ACE_CString s1 ("hello");
ACE_CString s2 ("world");
ACE_CString s3 ("el");
ACE_WString s4 ("hello");
ACE_WString s5 ("world");
ACE_WString s6 ("el");
ACE_ASSERT (s1 != s2);
ACE_ASSERT (s1.strstr (s2) == -1);
ACE_ASSERT (s1.strstr (s2) == -1);
ACE_ASSERT (s1.strstr (s3));
ACE_ASSERT (s4.strstr (s5) == -1);
ACE_ASSERT (s5.strstr (s6));
ACE_END_TEST;
return 0;
}
|