You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/tests/internal.cpp

19 lines
322 B
C++

#include <string>
#include <cstdlib>
#include <clocale>
#include "main.h"
class InternalsTest : public :: testing::Test {
protected:
void SetUp() override {
setlocale(LC_ALL, "");
}
};
TEST_F(InternalsTest, RGBtoANSIWhite) {
unsigned r, g, b;
r = g = b = 0xff;
EXPECT_EQ(255, rgb_to_ansi256(r, g, b));
}