~ubuntu-branches/ubuntu/maverick/icu/maverick-updates

« back to all changes in this revision

Viewing changes to source/test/intltest/tsdtfmsy.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2009-09-04 11:56:06 UTC
  • mfrom: (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20090904115606-sqxxuizelam5tozb
Tags: 4.2.1-3
Change install-doc target to not fail if there are subdirectories of
doc/html.  This is necessary to handle the doc/html/search directory
created by doxygen 3.6.1.  (Closes: #544799)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************
 
2
 * COPYRIGHT: 
 
3
 * Copyright (c) 1997-2005, International Business Machines Corporation and
 
4
 * others. All Rights Reserved.
 
5
 ********************************************************************/
 
6
 
 
7
#ifndef _INTLTESTDATEFORMATSYMBOLS
 
8
#define _INTLTESTDATEFORMATSYMBOLS
 
9
 
 
10
#include "unicode/utypes.h"
 
11
 
 
12
#if !UCONFIG_NO_FORMATTING
 
13
 
 
14
#include "intltest.h"
 
15
 
 
16
/**
 
17
 * Tests for DateFormatSymbols
 
18
 **/
 
19
class IntlTestDateFormatSymbols: public IntlTest {
 
20
    void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );  
 
21
 
 
22
private:
 
23
    /**
 
24
     * Test the API of DateFormatSymbols; primarily a simple get/set set.
 
25
     */
 
26
    void TestSymbols(/* char *par */);
 
27
    /**
 
28
     * Test getMonths.
 
29
     */
 
30
    void TestGetMonths(void);
 
31
    void TestGetMonths2(void);
 
32
 
 
33
    void TestGetWeekdays2(void);
 
34
    void TestGetEraNames(void);
 
35
};
 
36
 
 
37
#endif /* #if !UCONFIG_NO_FORMATTING */
 
38
 
 
39
#endif