1/*
2**********************************************************************
3* Copyright (C) 2011-2011, International Business Machines Corporation
4* and others.  All Rights Reserved.
5**********************************************************************
6************************************************************************
7*   Date          Name        Description
8*   05/14/2011    grhoten     Creation.
9************************************************************************/
10
11#ifndef DICTTEST_H
12#define DICTTEST_H
13
14#include "unicode/utypes.h"
15
16#if !UCONFIG_NO_BREAK_ITERATION
17
18#include "intltest.h"
19
20
21class DictionaryWordTest: public IntlTest {
22public:
23    void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
24    void TestWordBoundaries();
25    void TestThaiBreaks();
26};
27
28#endif /* #if !UCONFIG_NO_BREAK_ITERATION */
29
30#endif
31
32