WBurzynski
WBurzynski
I think this is good idea. It would make code more testable, because you can replace console output with string output and make assertions on that string. I wonder how...
I replaced `to_char_array()` with, `mavlink::set_string_z()` in tests, and it works just fine, but i think this should be handled by generator in a first place. I actually was suprised to...
@vooon i created simple cmake project: ```cmake cmake_minimum_required(VERSION 3.11) project(mavlink-cpp11_tests) # setup conan dependencies include(cmake/conan.cmake) run_conan() enable_testing() include(GoogleTest) add_executable(mavlink-cpp11 main.cpp) target_include_directories(mavlink-cpp11 PUBLIC include) target_compile_features(mavlink-cpp11 PRIVATE cxx_std_17) target_link_libraries(mavlink-cpp11 CONAN_PKG::gtest) # let...
@julianoes unfortunatelly this makefile did not work, because it could not find googletest in set location. But because i did find solution i mentioned above and run tests, i did...
I tried to implement fix myself, but i seems there is way more work to do than just removing `` eg. lot of stuff was removed in `std::allocator`.
seems like this file does not exist anymore and documentation does not mention how can we test bots now.
as a workaround maybe you can set up secondary repo with just the docs?