commit | 0abb2da539769995a12b4c9d8067c6a4eeeeeff2 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Thu Jan 30 18:07:57 2014 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Thu Jan 30 18:07:57 2014 -0800 |
tree | 00373017460d9633e6c280597aec4a8afb679ba2 | |
parent | 4d5e1de8eed1d7148e18538bf2c49509886e3ae6 [diff] [blame] |
tests: Do not use ``using namespace ndn'' and defining all tests in ndn namespace Change-Id: I3299e6255e4067b142ad0c8f87bebe1892505d0d
diff --git a/tests/test-encode-decode-block.cpp b/tests/test-encode-decode-block.cpp index 301f9c3..fe433a4 100644 --- a/tests/test-encode-decode-block.cpp +++ b/tests/test-encode-decode-block.cpp
@@ -9,7 +9,8 @@ #include "interest.hpp" using namespace std; -using namespace ndn; + +namespace ndn { BOOST_AUTO_TEST_SUITE(TestBlock) @@ -64,3 +65,5 @@ } BOOST_AUTO_TEST_SUITE_END() + +} // namespace ndn