test_appendHistoryByte.cpp 272 B

12345678910111213
  1. #include "test/framework/catch.hpp"
  2. #include "src/shellmatta_history.c"
  3. #include <string.h>
  4. TEST_CASE( "shellmatta_history dummy" ) {
  5. shellmatta_instance_t inst;
  6. inst.inputCount = 0u;
  7. //appendHistoryByte(&inst, 'a');
  8. REQUIRE( inst.inputCount == 0u);
  9. }