simplersble 1.1.1-dev1

The all-in-one Bluetooth library that makes it easy to add wireless connectivity to your projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include <gtest/gtest.h>
#include "helpers/PythonRunner.h"

int main(int argc, char** argv) {
    PythonRunner runner("test_fixture.py");

    runner.init();

    ::testing::InitGoogleTest(&argc, argv);
    auto test_result = RUN_ALL_TESTS();

    runner.uninit();

    return test_result;
}