- #include "test/framework/catch.hpp"
- #include "src/shellmatta_autocomplete.c"
- #include <string.h>
- TEST_CASE( "shellmatta_autocomplete_run dummy" ) {
- shellmatta_instance_t inst;
- inst.inputCount = 0u;
- autocomplete_run(&inst);
- REQUIRE( inst.inputCount == 0u);
- }
|