CANdevStudio
Development tool for CAN bus simulation
|
#include "enumiterator.h"
#include <catch.hpp>
#include <fakeit.hpp>
#include "sortmodel.h"
#include <QSignalSpy>
#include <QUuid>
#include <QtWidgets/QApplication>
#include <bcastmsgs.h>
#include <candbhandler.h>
#include <cstddef>
#include <cstdint>
#include <iconlabel.h>
#include <iterator>
#include <limits>
#include <log.h>
#include <propertyfields.h>
#include <type_traits>
#include <utility>
#include <vector>
#include <QStandardItemModel>
#include <QTableView>
Macros | |
#define | CATCH_CONFIG_RUNNER |
Enumerations | |
enum class | Trivial { A , B , C } |
enum class | TrivialStart { A = 0 , B , C , D , E } |
enum class | NonTrivial : std::uint16_t { A = 100 , B = 101 , C = 102 } |
enum class | NoPastTheEndUnsigned : std::size_t { A = std::numeric_limits<std::size_t>::min() , B = std::numeric_limits<std::size_t>::max() } |
enum class | NoPastTheEndSigned : std::ptrdiff_t { A = std::numeric_limits<std::ptrdiff_t>::min() , B = std::numeric_limits<std::ptrdiff_t>::max() } |
Functions | |
TEST_CASE ("EnumIterator singularity", "[common]") | |
TEST_CASE ("EnumIterator non-singular", "[common]") | |
TEST_CASE ("EnumIterator operator*", "[common]") | |
TEST_CASE ("EnumIterator operator->", "[common]") | |
TEST_CASE ("EnumIterator operator++", "[common]") | |
TEST_CASE ("EnumIterator swap", "[common]") | |
TEST_CASE ("EnumIterator non-trivial", "[common]") | |
TEST_CASE ("EnumIterator iterator_traits", "[common]") | |
TEST_CASE ("EnumIterator next", "[common]") | |
TEST_CASE ("EnumIterator range-based-for non-trivial", "[common]") | |
TEST_CASE ("EnumIterator range-based-for trivial", "[common]") | |
TEST_CASE ("EnumIterator range-based-for trivial-start", "[common]") | |
TEST_CASE ("IconLable sizeHint", "[common]") | |
TEST_CASE ("CanDbHandler - CanDbUpdated", "[common]") | |
TEST_CASE ("CanDbHandler - updateCurrentDbFromProps", "[common]") | |
TEST_CASE ("CanDbHandler - InitDone", "[common]") | |
TEST_CASE ("CanDbHandler - NodeDeleted", "[common]") | |
TEST_CASE ("CanDbHandler - ConfigChanged", "[common]") | |
TEST_CASE ("CanDbHandler - createPropertyWidget", "[common]") | |
void | addNewFrame (uint &rowID, double time, uint frameID, uint data, QStandardItemModel &tvModel) |
TEST_CASE ("Sort test", "[canrawview]") | |
int | main (int argc, char *argv[]) |
Variables | |
std::shared_ptr< spdlog::logger > | kDefaultLogger |
#define CATCH_CONFIG_RUNNER |
|
strong |
|
strong |
|
strong |
|
strong |
|
strong |
void addNewFrame | ( | uint & | rowID, |
double | time, | ||
uint | frameID, | ||
uint | data, | ||
QStandardItemModel & | tvModel | ||
) |
int main | ( | int | argc, |
char * | argv[] | ||
) |
TEST_CASE | ( | "CanDbHandler - CanDbUpdated" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "CanDbHandler - ConfigChanged" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "CanDbHandler - createPropertyWidget" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "CanDbHandler - InitDone" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "CanDbHandler - NodeDeleted" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "CanDbHandler - updateCurrentDbFromProps" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator iterator_traits" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator next" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator non-singular" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator non-trivial" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator operator*" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator operator++" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator operator->" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator range-based-for non-trivial" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator range-based-for trivial" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator range-based-for trivial-start" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator singularity" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "EnumIterator swap" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "IconLable sizeHint" | , |
"" | [common] | ||
) |
TEST_CASE | ( | "Sort test" | , |
"" | [canrawview] | ||
) |
std::shared_ptr<spdlog::logger> kDefaultLogger |