次の関数を使用すると、数値型の限界値を取得できます。自動生成されたテスト ケースで使用されます。
 

マクロ

説明

char cpptestLimitsGetMaxChar(void)

char 型の最大値を返します。

char cpptestLimitsGetMinChar(void)

char 型の最小値を返します。

signed char cpptestLimitsGetMaxSignedChar(void)

signed char 型の最大値を返します。

signed char cpptestLimitsGetMinSignedChar(void)

signed char 型の最小値を返します。

unsigned char cpptestLimitsGetMaxUnsignedChar(void)

unsigned char 型の最大値を返します。

short cpptestLimitsGetMaxShort(void)

short  型の最大値を返します。

short cpptestLimitsGetMinShort(void)

short 型の最小値を返します。

unsigned short cpptestLimitsGetMaxUnsignedShort(void)

unsigned short 型の最大値を返します。

int cpptestLimitsGetMaxInt(void)

int 型の最大値を返します。

int cpptestLimitsGetMinInt(void)

int 型の最小値を返します。

unsigned int cpptestLimitsGetMaxUnsignedInt(void)

unsigned int 型の最大値を返します。

long cpptestLimitsGetMaxLong(void)

long 型の最大値を返します。

long cpptestLimitsGetMinLong(void)

long 型の最小値を返します。

unsigned long cpptestLimitsGetMaxUnsignedLong(void)

unsigned long 型の最大値を返します。

float cpptestLimitsGetMaxPosFloat(void)

float 型の正の最大値を返します。

float cpptestLimitsGetMinNegFloat(void)

float 型の負の最小値を返します。

float cpptestLimitsGetMaxNegFloat(void)

float 型の負の最小値を返します。

float cpptestLimitsGetMaxNegFloat(void)

float 型の負の最大値を返します。

float cpptestLimitsGetMinPosFloat(void)

float 型の正の最小値を返します。

double cpptestLimitsGetMaxPosDouble(void)

double 型の正の最大値を返します。

double cpptestLimitsGetMinNegDouble(void)

double 型の負の最小値を返します。

double cpptestLimitsGetMaxNegDouble(void)

double 型の負の最大値を返します。

double cpptestLimitsGetMinPosDouble(void)

double 型の正の最大値を返します。

long double cpptestLimitsGetMaxPosLongDouble(void)

long double 型の正の最大値を返します。

long double cpptestLimitsGetMinNegLongDouble(void)

long double 型の負の最小値を返します。

long double cpptestLimitsGetMaxNegLongDouble(void)

long double 型の負の最大値を返します。

long double cpptestLimitsGetMinPosLongDouble(void)

long double 型の正の最大値を返します。

  • No labels