C++ port: Make sure #indef/#define/#endif's and copyright information on all header...
[zxing.git] / cpp / core / tests / src / common / CountedTest.h
index 8930bc4..185aad4 100644 (file)
@@ -5,8 +5,7 @@
  *  CountedTest.h
  *  zxing
  *
- *  Created by Christian Brunschen on 08/05/2008.
- *  Copyright 2008 Google UK. All rights reserved.
+ *  Copyright 2010 ZXing authors All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 using namespace std;
 
-namespace common {
-  
-  class CountedTest : public CppUnit::TestFixture {
-    CPPUNIT_TEST_SUITE (CountedTest);
-    CPPUNIT_TEST (test);
-    CPPUNIT_TEST_SUITE_END ();
-    
-  public:
-    void setUp();
-    void tearDown();
-    
-  protected:
-    void test();
-    
-  private:
-  };
+namespace zxing {
+
+class CountedTest : public CppUnit::TestFixture {
+  CPPUNIT_TEST_SUITE(CountedTest);
+  CPPUNIT_TEST(test);
+  CPPUNIT_TEST_SUITE_END();
+
+public:
+  void setUp();
+  void tearDown();
+
+protected:
+  void test();
+
+private:
+};
 }
 
 #endif // __COUNTED_TEST_H__