test_autocomplete_run.cpp 278 B

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