mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2011, International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
********************************************************************/
|
|
|
|
|
|
#ifndef _PUTILTEST_
|
|
#define _PUTILTEST_
|
|
|
|
#include "intltest.h"
|
|
|
|
/**
|
|
* Test putil.h
|
|
**/
|
|
class PUtilTest : public IntlTest {
|
|
// IntlTest override
|
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) override;
|
|
public:
|
|
|
|
// void testIEEEremainder();
|
|
void testMaxMin();
|
|
|
|
private:
|
|
// void remainderTest(double x, double y, double exp);
|
|
void maxMinTest(double a, double b, double exp, UBool max);
|
|
|
|
// the actual tests; methods return the number of errors
|
|
void testNaN();
|
|
void testPositiveInfinity();
|
|
void testNegativeInfinity();
|
|
void testZero();
|
|
|
|
// subtests of testNaN
|
|
void testIsNaN();
|
|
void NaNGT();
|
|
void NaNLT();
|
|
void NaNGTE();
|
|
void NaNLTE();
|
|
void NaNE();
|
|
void NaNNE();
|
|
|
|
};
|
|
|
|
#endif
|
|
//eof
|