14 lines
269 B
C++
14 lines
269 B
C++
#include "test/framework/catch.hpp"
|
|
#include "src/shellmatta_escape.c"
|
|
#include <string.h>
|
|
|
|
TEST_CASE( "shellmatta_escape dummy" ) {
|
|
|
|
shellmatta_instance_t inst;
|
|
inst.inputCount = 0u;
|
|
|
|
escape_processArrowKeys(&inst);
|
|
|
|
REQUIRE( inst.inputCount == 0u);
|
|
}
|