test_shellmatta_doInit.cpp 295 B

1234567891011121314
  1. #include "test/framework/catch.hpp"
  2. #include "src/shellmatta.c"
  3. #include <string.h>
  4. TEST_CASE( "shellmatta dummy" ) {
  5. shellmatta_instance_t inst;
  6. //shellmatta_handle_t handle;
  7. inst.inputCount = 0u;
  8. //shellmatta_doInit(&inst, &handle, )
  9. REQUIRE( inst.inputCount == 0u);
  10. }