Files
kte/tests/test_daily_driver_harness.cc
2026-02-17 13:44:36 -08:00

13 lines
221 B
C++

#include "Test.h"
#include "tests/TestHarness.h"
TEST(DailyDriverHarness_Smoke_CanCreateBufferAndInsertText)
{
ktet::TestHarness h;
ASSERT_TRUE(h.InsertText("hello"));
ASSERT_EQ(h.Line(0), std::string("hello"));
}