shellmatta/test/unittest/shellmatta_history/test_appendHistoryByte.cpp

14 lines
272 B
C++
Raw Permalink Normal View History

#include "test/framework/catch.hpp"
#include "src/shellmatta_history.c"
#include <string.h>
TEST_CASE( "shellmatta_history dummy" ) {
shellmatta_instance_t inst;
inst.inputCount = 0u;
//appendHistoryByte(&inst, 'a');
REQUIRE( inst.inputCount == 0u);
}