MCPcopy Create free account
hub / github.com/collin80/SavvyCAN / exchange_data

Method exchange_data

test/tst_lfqueue.cpp:49–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47
48
49void TestLFQueue::exchange_data()
50{
51 QTest::addColumn<int>("size");
52 QTest::addColumn<bool>("writerSleep");
53 QTest::addColumn<bool>("readerSleep");
54
55 QTest::newRow("nosleep") << 1000 << false << false;
56 QTest::newRow("readersleep") << 1000 << false << true;
57 QTest::newRow("writersleep") << 1000 << true << false;
58}
59
60
61void TestLFQueue::exchange()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected