test_shellmatta_doInit.cpp 365 B

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