GraphTest.h 368 字节
Newer Older
邹晓航 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef _GRAPH_TEST_H_
#define _GRAPH_TEST_H_

#include "TestUtil.h"

#include "../Graph.h"

#include <cassert>

namespace TinySTL{
	namespace GraphTest{
		template<class Index, class Value>
		using dGraph = TinySTL::directed_graph < Index, Value > ;

		void testCase1();
		void testCase2();
邹晓航 已提交
17 18
		void testCase3();
		void testCase4();
邹晓航 已提交
19 20 21 22 23 24

		void testAllCases();
	}
}

#endif