Many changes to the C++ port.
[zxing.git] / cpp / core / tests / src / common / BitSourceTest.h
index 38d6efb..c8dd1be 100644 (file)
 
 #include <cppunit/TestFixture.h>
 #include <cppunit/extensions/HelperMacros.h>
-#include "../../../src/common/BitSource.h"
+#include <zxing/common/BitSource.h>
 
-namespace common {
-  class BitSourceTest : public CPPUNIT_NS::TestFixture {
-    CPPUNIT_TEST_SUITE (BitSourceTest);
-    CPPUNIT_TEST (testSource);
-    CPPUNIT_TEST_SUITE_END ();
-    
-  public:
-    
-  protected:
-    void testSource();
-    
-  private:
-  };
+namespace zxing {
+class BitSourceTest : public CPPUNIT_NS::TestFixture {
+  CPPUNIT_TEST_SUITE(BitSourceTest);
+  CPPUNIT_TEST(testSource);
+  CPPUNIT_TEST_SUITE_END();
+
+public:
+
+protected:
+  void testSource();
+
+private:
+};
 }
 
 #endif // __BIT_SOURCE_TEST_H__