mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibTest/TestCase.h>
|
|
|
|
#include <wctype.h>
|
|
|
|
TEST_CASE(wctype)
|
|
{
|
|
// Test that existing properties return non-zero wctypes.
|
|
EXPECT(wctype("alnum") != 0);
|
|
EXPECT(wctype("alpha") != 0);
|
|
EXPECT(wctype("blank") != 0);
|
|
EXPECT(wctype("cntrl") != 0);
|
|
EXPECT(wctype("digit") != 0);
|
|
EXPECT(wctype("graph") != 0);
|
|
EXPECT(wctype("lower") != 0);
|
|
EXPECT(wctype("print") != 0);
|
|
EXPECT(wctype("punct") != 0);
|
|
EXPECT(wctype("space") != 0);
|
|
EXPECT(wctype("upper") != 0);
|
|
EXPECT(wctype("xdigit") != 0);
|
|
|
|
// Test that invalid properties return the "invalid" wctype (0).
|
|
EXPECT(wctype("") == 0);
|
|
EXPECT(wctype("abc") == 0);
|
|
}
|
|
|
|
TEST_CASE(wctrans)
|
|
{
|
|
// Test that existing character mappings return non-zero wctrans values.
|
|
EXPECT(wctrans("tolower") != 0);
|
|
EXPECT(wctrans("toupper") != 0);
|
|
|
|
// Test that invalid character mappings return the "invalid" wctrans value (0).
|
|
EXPECT(wctrans("") == 0);
|
|
EXPECT(wctrans("abc") == 0);
|
|
}
|