Many changes to the C++ port.
[zxing.git] / cpp / core / tests / src / common / BitMatrixTest.h
index 56acfaf..3cd0216 100644 (file)
 
 #include <cppunit/TestFixture.h>
 #include <cppunit/extensions/HelperMacros.h>
-#include "../../../src/common/BitMatrix.h"
-
-namespace common {
-  class BitMatrixTest : public CPPUNIT_NS::TestFixture {
-    CPPUNIT_TEST_SUITE (BitMatrixTest);
-    CPPUNIT_TEST (testGetSet);
-    CPPUNIT_TEST (testSetRegion);
-    CPPUNIT_TEST (testGetBits);
-    CPPUNIT_TEST_SUITE_END ();
-    
-  public:
-    
-  protected:
-    void testGetSet();
-    void testSetRegion();
-    void testGetBits();
-    
-  private:
-  };
+#include <zxing/common/BitMatrix.h>
+
+namespace zxing {
+class BitMatrixTest : public CPPUNIT_NS::TestFixture {
+  CPPUNIT_TEST_SUITE(BitMatrixTest);
+  CPPUNIT_TEST(testGetSet);
+  CPPUNIT_TEST(testSetRegion);
+  CPPUNIT_TEST(testGetBits);
+  CPPUNIT_TEST_SUITE_END();
+
+public:
+
+protected:
+  void testGetSet();
+  void testSetRegion();
+  void testGetBits();
+
+private:
+};
 }