| OLD | NEW |
| 1 // Copyright 2008 Google Inc. All Rights Reserved. | 1 // Copyright 2008 Google Inc. All Rights Reserved. |
| 2 | 2 |
| 3 #include <string> | 3 #include <string> |
| 4 #include <vector> | 4 #include <vector> |
| 5 | 5 |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "chrome/third_party/hunspell/google/bdict_reader.h" | 9 #include "third_party/hunspell/google/bdict_reader.h" |
| 10 #include "chrome/third_party/hunspell/google/bdict_writer.h" | 10 #include "third_party/hunspell/google/bdict_writer.h" |
| 11 #include "chrome/third_party/hunspell/src/hunspell/hunspell.hxx" | 11 #include "third_party/hunspell/src/hunspell/hunspell.hxx" |
| 12 #include "chrome/tools/convert_dict/aff_reader.h" | 12 #include "chrome/tools/convert_dict/aff_reader.h" |
| 13 #include "chrome/tools/convert_dict/dic_reader.h" | 13 #include "chrome/tools/convert_dict/dic_reader.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 15 |
| 16 // Note that this test can be run using Hunspell without our modifications so | 16 // Note that this test can be run using Hunspell without our modifications so |
| 17 // it can be compared to with. It keys off of HUNSPELL_CHROME_CLIENT just like | 17 // it can be compared to with. It keys off of HUNSPELL_CHROME_CLIENT just like |
| 18 // the Hunspell library does. | 18 // the Hunspell library does. |
| 19 | 19 |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 RunTest("reputf"); | 204 RunTest("reputf"); |
| 205 RunTest("slash"); | 205 RunTest("slash"); |
| 206 RunTest("sug"); | 206 RunTest("sug"); |
| 207 RunTest("utf8"); | 207 RunTest("utf8"); |
| 208 RunTest("utf8_bom"); | 208 RunTest("utf8_bom"); |
| 209 RunTest("utf8_bom2"); | 209 RunTest("utf8_bom2"); |
| 210 RunTest("utf8_nonbmp"); | 210 RunTest("utf8_nonbmp"); |
| 211 RunTest("utfcompound"); | 211 RunTest("utfcompound"); |
| 212 RunTest("zeroaffix"); | 212 RunTest("zeroaffix"); |
| 213 } | 213 } |
| OLD | NEW |