Many changes to the C++ port.
[zxing.git] / cpp / core / tests / src / common / BlackPointEstimatorTest.h
index 76772cb..7276d30 100644 (file)
 
 #include <cppunit/TestFixture.h>
 #include <cppunit/extensions/HelperMacros.h>
-#include "../../../src/common/BlackPointEstimator.h"
-
-namespace common {
-  class BlackPointEstimatorTest : public CPPUNIT_NS::TestFixture {
-    CPPUNIT_TEST_SUITE (BlackPointEstimatorTest);
-    CPPUNIT_TEST (testBasic);
-    CPPUNIT_TEST (testTooLittleRange);
-    CPPUNIT_TEST_SUITE_END ();
-    
-  public:
-    
-  protected:
-    void testBasic();
-    void testTooLittleRange();
-    
-  private:
-  };
+#include <zxing/common/GlobalHistogramBinarizer.h>
+
+namespace zxing {
+class BlackPointEstimatorTest : public CPPUNIT_NS::TestFixture {
+  CPPUNIT_TEST_SUITE(BlackPointEstimatorTest);
+  CPPUNIT_TEST(testBasic);
+  CPPUNIT_TEST(testTooLittleRange);
+  CPPUNIT_TEST_SUITE_END();
+
+public:
+
+protected:
+  void testBasic();
+  void testTooLittleRange();
+
+private:
+};
 }
 
 
-#endif __BLACK_POINT_ESTIMATOR_TEST_H__
+#endif // __BLACK_POINT_ESTIMATOR_TEST_H__