]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/ctestfw/testdata.cpp
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / tools / ctestfw / testdata.cpp
index 68a5b5357ea045730211d8930474699837a47d89..3ccf009cee6419b310c42783f8a8394dce1e46b1 100644 (file)
@@ -1,6 +1,8 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 2002-2004, International Business Machines Corporation and
+ * Copyright (c) 2002-2005, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 
@@ -8,8 +10,9 @@
 
 #include "unicode/testdata.h"
 
-TestData::TestData(const char* name)
-: name(name),
+
+TestData::TestData(const char* testName)
+: name(testName),
 fInfo(NULL),
 fCurrSettings(NULL),
 fCurrCase(NULL),
@@ -40,8 +43,8 @@ const char * TestData::getName() const
 
 
 
-RBTestData::RBTestData(const char* name)
-: TestData(name),
+RBTestData::RBTestData(const char* testName)
+: TestData(testName),
 fData(NULL),
 fHeaders(NULL),
 fSettings(NULL),
@@ -138,3 +141,4 @@ UBool RBTestData::nextCase(const DataMap *& nextCase, UErrorCode &status)
   }
 }
 
+