]> sigrok.org Git - pulseview.git/blobdiff - test/test.cpp
build: Limit auto-versioning to git revision hash
[pulseview.git] / test / test.cpp
index acb3c963dcfb8a1488440c1f7165fe2f07a6a81a..2d67f2935e2bf48e3cc4b9c83208ec374bac168d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the PulseView project.
  *
  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
  *
 
 #define BOOST_TEST_MAIN
 #include <boost/test/unit_test.hpp>
+#include "test/test.hpp"
 
-#include "../logicdatasnapshot.h"
-
-BOOST_AUTO_TEST_CASE(LogicDataSnapshotTest)
+std::ostream& operator<<(std::ostream& stream, const QString& str)
 {
-       // Create an empty LogicDataSnapshot object
-       sr_datafeed_logic logic;
-       logic.length = 0;
-       logic.unitsize = 1;
-       logic.data = NULL;
-
-       LogicDataSnapshot s(logic);
-
-       BOOST_CHECK(s.get_sample_count() == 0);
+       return stream << str.toUtf8().data();
 }