/* * Copyright (c) 2019 - 2024 Stefan Strobel * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ /** * @file test_escape_processArrowKeys.c * @brief unittest for shellmatta escape_processArrowKeys - currently not implemented * @author Stefan Strobel */ #include "test/framework/catch.hpp" #include "src/shellmatta_escape.c" #include TEST_CASE( "shellmatta_escape dummy" ) { shellmatta_instance_t inst; inst.inputCount = 0u; escape_processArrowKeys(&inst); REQUIRE(inst.inputCount == 0u); }