summaryrefslogtreecommitdiff
path: root/src/dict_test.cc
diff options
context:
space:
mode:
authorChris Dyer <redpony@gmail.com>2009-12-14 20:35:11 -0500
committerChris Dyer <redpony@gmail.com>2009-12-14 20:35:11 -0500
commit851e389dffdd6996ea32d70defb8906de80b9edc (patch)
tree8c68ee77205badc056b8ab5b332e67e3e98017df /src/dict_test.cc
parentdc6930c00b4b276883280cff1ed6dcd9ddef03c7 (diff)
few small fixes of alignment tools, add new orthographic similarity feature for word aligner, final naming of directories, libraries in cdec
Diffstat (limited to 'src/dict_test.cc')
-rw-r--r--src/dict_test.cc30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/dict_test.cc b/src/dict_test.cc
deleted file mode 100644
index 5c5d84f0..00000000
--- a/src/dict_test.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-#include "dict.h"
-
-#include <gtest/gtest.h>
-#include <cassert>
-
-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");
-}
-
-int main(int argc, char** argv) {
- testing::InitGoogleTest(&argc, argv);
- return RUN_ALL_TESTS();
-}
-