From 4dd2dfe8386fe4f0566b0fef41f8418dd213e616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Wed, 11 Feb 2015 10:45:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL/Test/GraphTest.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 TinySTL/Test/GraphTest.h diff --git a/TinySTL/Test/GraphTest.h b/TinySTL/Test/GraphTest.h new file mode 100644 index 0000000..bd5a974 --- /dev/null +++ b/TinySTL/Test/GraphTest.h @@ -0,0 +1,22 @@ +#ifndef _GRAPH_TEST_H_ +#define _GRAPH_TEST_H_ + +#include "TestUtil.h" + +#include "../Graph.h" + +#include + +namespace TinySTL{ + namespace GraphTest{ + template + using dGraph = TinySTL::directed_graph < Index, Value > ; + + void testCase1(); + void testCase2(); + + void testAllCases(); + } +} + +#endif \ No newline at end of file