summaryrefslogtreecommitdiff
path: root/extractor/sampler_test.cc
diff options
context:
space:
mode:
authorPaul Baltescu <pauldb89@gmail.com>2013-03-06 15:25:54 +0000
committerPaul Baltescu <pauldb89@gmail.com>2013-03-06 15:25:54 +0000
commitab5367aa2c42126a04034cd7d3cec125bca399ca (patch)
tree9698d9d23ed7618554c61624f8899eb8ba9b3b09 /extractor/sampler_test.cc
parent245e705ac7b6fca80a7aa4898f5467053ec2c585 (diff)
Namespace for extractor.
Diffstat (limited to 'extractor/sampler_test.cc')
-rw-r--r--extractor/sampler_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/extractor/sampler_test.cc b/extractor/sampler_test.cc
index 4f91965b..e9abebfa 100644
--- a/extractor/sampler_test.cc
+++ b/extractor/sampler_test.cc
@@ -9,6 +9,7 @@
using namespace std;
using namespace ::testing;
+namespace extractor {
namespace {
class SamplerTest : public Test {
@@ -69,4 +70,5 @@ TEST_F(SamplerTest, TestSubstringsSample) {
EXPECT_EQ(PhraseLocation(expected_locations, 2), sampler->Sample(location));
}
-} // namespace
+} // namespace
+} // namespace extractor