Lines Matching refs:TEST
33 TEST(LocalUtilsTest, CastEnumToIntegerWorksForValidEnumValues) { in TEST() function
39 TEST(LocalUtilsTest, CastEnumToIntegerWorksForInvalidEnumValues) { in TEST() function
48 TEST(LocalUtilsTest, CopyFromBufferOrDieCopiesData) { in TEST() function
60 TEST(LocalUtilsTest, GetMaxValFromTypeIsCorrectForUnsignedTypes) { in TEST() function
67 TEST(LocalUtilsTest, GetMaxValFromTypeIsCorrectForSignedTypes) { in TEST() function
74 TEST(LocalUtilsTest, GetMaxValFromInstanceIsCorrectForUnsignedTypes) { in TEST() function
81 TEST(LocalUtilsTest, GetMaxValFromInstanceIsCorrectForSignedTypes) { in TEST() function
88 TEST(LocalUtilsTest, IsAsciiPrintableReturnsTrueForAlphabeticCharacters) { in TEST() function
94 TEST(LocalUtilsTest, IsAsciiPrintableReturnsTrueForNumericCharacters) { in TEST() function
100 TEST(LocalUtilsTest, IsAsciiPrintableReturnsTrueForPrintableSpaces) { in TEST() function
107 TEST(LocalUtilsTest, IsAsciiPrintableReturnsTrueForMaximalPrintable) { in TEST() function
111 TEST(LocalUtilsTest, IsAsciiPrintableReturnsFalseForUnprintableSpaces) { in TEST() function
118 TEST(LocalUtilsTest, IsAsciiPrintableReturnsFalseForNeighborsOfPrintables) { in TEST() function
125 TEST(LocalUtilsTest, IsAsciiPrintableReturnsFalseForMinimalAndMaximalChars) { in TEST() function
133 TEST(LocalUtilsTest, SafelyClampWorksForSameTypeClamping) { in TEST() function
141 TEST(LocalUtilsTest, SafelyClampWorksForSignedToUnsigned) { in TEST() function
150 TEST(LocalUtilsTest, SafelyClampWorksForUnsignedToSigned) { in TEST() function
163 TEST(LocalUtilsDeathTest, CopyFromBufferOrDieWithShortBufferCausesDeath) { in TEST() function