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 46 47 48 49 50 51
|
#include "tut.h"
#include "StaticString.h"
using namespace Passenger;
using namespace std;
namespace tut {
struct StaticStringTest {
};
DEFINE_TEST_GROUP(StaticStringTest);
TEST_METHOD(1) {
// Test == operator.
ensure(StaticString("") == "");
ensure(StaticString("foo") == "foo");
ensure(!(StaticString("foo") == "bar"));
}
TEST_METHOD(2) {
// Test < operator.
ensure_equals("Assertion 1",
StaticString("") < "",
string("") < string("")
);
ensure_equals("Assertion 2",
StaticString("abc") < "abc",
string("abc") < string("abc")
);
ensure_equals("Assertion 3",
StaticString("foo") < "bar",
string("foo") < string("bar")
);
ensure_equals("Assertion 4",
StaticString("foo") < "bar!",
string("foo") < string("bar!")
);
ensure_equals("Assertion 5",
StaticString("bar!") < "foo",
string("bar!") < string("foo")
);
ensure_equals("Assertion 6",
StaticString("hello") < "hello world",
string("hello") < string("hello world")
);
ensure_equals("Assertion 7",
StaticString("hello world") < "hello",
string("hello world") < string("hello")
);
}
}
|