Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: icu46/source/test/intltest/rbbiapts.h

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « icu46/source/test/intltest/punyref.c ('k') | icu46/source/test/intltest/rbbiapts.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: icu46/source/test/intltest/rbbiapts.h
===================================================================
--- icu46/source/test/intltest/rbbiapts.h (revision 0)
+++ icu46/source/test/intltest/rbbiapts.h (revision 0)
@@ -0,0 +1,115 @@
+/********************************************************************
+ * COPYRIGHT:
+ * Copyright (c) 1999-2004,2008 International Business Machines Corporation and
+ * others. All Rights Reserved.
+ ********************************************************************/
+/************************************************************************
+* Date Name Description
+* 12/14/99 Madhu Creation.
+************************************************************************/
+
+
+
+#ifndef RBBIAPITEST_H
+#define RBBIAPITEST_H
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_BREAK_ITERATION
+
+#include "intltest.h"
+#include "unicode/rbbi.h"
+
+/**
+ * API Test the RuleBasedBreakIterator class
+ */
+class RBBIAPITest: public IntlTest {
+public:
+
+
+ void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
+ /**
+ * Tests Constructor behaviour of RuleBasedBreakIterator
+ **/
+ // void TestConstruction(void);
+ /**
+ * Tests clone() and equals() methods of RuleBasedBreakIterator
+ **/
+ void TestCloneEquals();
+ /**
+ * Tests toString() method of RuleBasedBreakIterator
+ **/
+ void TestgetRules();
+ /**
+ * Tests the method hashCode() of RuleBasedBreakIterator
+ **/
+ void TestHashCode();
+ /**
+ * Tests the methods getText() and setText() of RuleBasedBreakIterator
+ **/
+ void TestGetSetAdoptText();
+ /**
+ * Testing the iteration methods of RuleBasedBreakIterator
+ **/
+ void TestIteration(void);
+
+
+ /**
+ * Tests creating RuleBasedBreakIterator from rules strings.
+ **/
+ void TestBuilder(void);
+
+ void TestRoundtripRules(void);
+
+ void RoundtripRule(const char *dataFile);
+
+ /**
+ * Test creating RuleBasedBreakIterator from RBBIData.
+ **/
+
+ void TestCreateFromRBBIData(void);
+
+ /**
+ * Tests grouping effect of 'single quotes' in rules.
+ **/
+ void TestQuoteGrouping();
+
+ /**
+ * Tests word break status returns.
+ */
+ void TestRuleStatus();
+ void TestRuleStatusVec();
+
+ void TestBug2190();
+
+ void TestBoilerPlate();
+
+ void TestRegistration();
+
+ /**
+ *Internal subroutines
+ **/
+ /* Internal subroutine used by TestIsBoundary() */
+ void doBoundaryTest(RuleBasedBreakIterator& bi, UnicodeString& text, int32_t *boundaries);
+
+ /*Internal subroutine used for comparision of expected and acquired results */
+ void doTest(UnicodeString& testString, int32_t start, int32_t gotoffset, int32_t expectedOffset, const char* expected);
+
+
+};
+
+/**
+ * Special class to enable testing of protected functions in RuleBasedBreakIterator
+ */
+class RBBIWithProtectedFunctions: public RuleBasedBreakIterator {
+public:
+ enum EDontAdopt {
+ kDontAdopt
+ };
+ RBBIWithProtectedFunctions(RBBIDataHeader* data, UErrorCode &status);
+ RBBIWithProtectedFunctions(const RBBIDataHeader* data, enum EDontAdopt dontAdopt, UErrorCode &status);
+};
+
+#endif /* #if !UCONFIG_NO_BREAK_ITERATION */
+
+#endif
Property changes on: icu46/source/test/intltest/rbbiapts.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « icu46/source/test/intltest/punyref.c ('k') | icu46/source/test/intltest/rbbiapts.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698