Просмотр исходного кода

add our own equals method as assert doesn't really show the offending
values which causes the failure.

David Kalnischkies лет назад: 16
Родитель
Сommit
cefb7c1f24
1 измененных файлов с 21 добавлено и 0 удалено
  1. 21 0
      test/libapt/assert.h

+ 21 - 0
test/libapt/assert.h

@@ -0,0 +1,21 @@
+#include <iostream>
+
+#define equals(x,y) assertEquals(x, y, __LINE__)
+
+template < typename X, typename Y >
+void OutputAssert(X expect, char const* compare, Y get, unsigned long const &line) {
+	std::cerr << "Test FAILED: »" << expect << "« " << compare << " »" << get << "« at line " << line << std::endl;
+}
+
+template < typename X, typename Y >
+void assertEquals(X expect, Y get, unsigned long const &line) {
+	if (expect == get)
+		return;
+	OutputAssert(expect, "==", get, line);
+}
+
+void assertEquals(unsigned int const &expect, int const &get, unsigned long const &line) {
+	if (get < 0)
+		OutputAssert(expect, "==", get, line);
+	assertEquals<unsigned int const&, unsigned int const&>(expect, get, line);
+}