test_autocomplete_run.cpp 728 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2019 - 2024 Stefan Strobel <stefan.strobel@shimatta.net>
  3. *
  4. * This Source Code Form is subject to the terms of the Mozilla Public
  5. * License, v. 2.0. If a copy of the MPL was not distributed with this
  6. * file, You can obtain one at https://mozilla.org/MPL/2.0/.
  7. */
  8. /**
  9. * @file test_autodomplete_run.c
  10. * @brief unittest for shellmatta aurocomplete_run function - currently not implemented
  11. * @author Stefan Strobel <stefan.strobel@shimatta.net>
  12. */
  13. #include "test/framework/catch.hpp"
  14. #include "src/shellmatta_autocomplete.c"
  15. #include <string.h>
  16. TEST_CASE( "shellmatta_autocomplete_run dummy" ) {
  17. shellmatta_instance_t inst;
  18. inst.inputCount = 0u;
  19. REQUIRE( inst.inputCount == 0u);
  20. }