blob: 2049ec27f3fcaaae031f59bd7090219e92199f0a (
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
46
47
|
#include "dict.h"
#include "fdict.h"
#include <iostream>
#include <gtest/gtest.h>
#include <cassert>
using namespace std;
class DTest : public testing::Test {
public:
DTest() {}
protected:
virtual void SetUp() { }
virtual void TearDown() { }
};
TEST_F(DTest, Convert) {
Dict d;
WordID a = d.Convert("foo");
WordID b = d.Convert("bar");
std::string x = "foo";
WordID c = d.Convert(x);
EXPECT_NE(a, b);
EXPECT_EQ(a, c);
EXPECT_EQ(d.Convert(a), "foo");
EXPECT_EQ(d.Convert(b), "bar");
}
TEST_F(DTest, FDictTest) {
int fid = FD::Convert("First");
EXPECT_GT(fid, 0);
EXPECT_EQ(FD::Convert(fid), "First");
string x = FD::Escape("=");
cerr << x << endl;
EXPECT_NE(x, "=");
x = FD::Escape(";");
cerr << x << endl;
EXPECT_NE(x, ";");
}
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
|