summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Vazquez <christian.vazquez@epfl.ch>2011-03-09 14:39:33 +0000
committerChristian Vazquez <christian.vazquez@epfl.ch>2011-03-09 14:39:33 +0000
commit492ae0e6735e04b5ea633b477e2b56518eea3ca3 (patch)
treea7f6897aa61b8e98cc31304840c5ddf3c272815e
parent57caca6a5f2939b795b9bed7110f5a7c564d1053 (diff)
downloadvhc-492ae0e6735e04b5ea633b477e2b56518eea3ca3.tar.gz
vhc-492ae0e6735e04b5ea633b477e2b56518eea3ca3.tar.bz2
vhc-492ae0e6735e04b5ea633b477e2b56518eea3ca3.zip
tests divers
-rw-r--r--src/vhc/Foo.cc21
-rw-r--r--src/vhc/Foo.h21
-rw-r--r--src/vhc/essai.cc7
-rw-r--r--src/vhctest/Vector3DTest.cc7
4 files changed, 49 insertions, 7 deletions
diff --git a/src/vhc/Foo.cc b/src/vhc/Foo.cc
new file mode 100644
index 0000000..4c93880
--- /dev/null
+++ b/src/vhc/Foo.cc
@@ -0,0 +1,21 @@
+/*
+ * Foo.cc
+ *
+ * Created on: 9 mars 2011
+ * Author: christian
+ */
+
+#include "Foo.h"
+
+namespace vhc {
+
+Foo::Foo() {
+ // TODO Auto-generated constructor stub
+
+}
+
+Foo::~Foo() {
+ // TODO Auto-generated destructor stub
+}
+
+}
diff --git a/src/vhc/Foo.h b/src/vhc/Foo.h
new file mode 100644
index 0000000..77d682b
--- /dev/null
+++ b/src/vhc/Foo.h
@@ -0,0 +1,21 @@
+/*
+ * Foo.h
+ *
+ * Created on: 9 mars 2011
+ * Author: christian
+ */
+
+#ifndef FOO_H_
+#define FOO_H_
+
+namespace vhc {
+
+class Foo {
+public:
+ Foo();
+ virtual ~Foo();
+};
+
+}
+
+#endif /* FOO_H_ */
diff --git a/src/vhc/essai.cc b/src/vhc/essai.cc
new file mode 100644
index 0000000..ce38ce9
--- /dev/null
+++ b/src/vhc/essai.cc
@@ -0,0 +1,7 @@
+/*
+ * essai.cc
+ *
+ * Created on: 9 mars 2011
+ * Author: christian
+ */
+
diff --git a/src/vhctest/Vector3DTest.cc b/src/vhctest/Vector3DTest.cc
index eda1e3f..f203253 100644
--- a/src/vhctest/Vector3DTest.cc
+++ b/src/vhctest/Vector3DTest.cc
@@ -16,13 +16,6 @@
using namespace std;
using namespace vhc;
-/*#define ASSERT(x) \
- if (! (x)) { \
- cout << "ERROR!! Assert " << #x << " failed\n"; \
- cout << " on line " << __LINE__ << "\n"; \
- cout << " in file " << __FILE__ << "\n"; \
- error = true; \
- }*/
bool printTest();