diff --git a/TinySTL/Test/PriorityQueueTest.cpp b/TinySTL/Test/PriorityQueueTest.cpp new file mode 100644 index 0000000..ede02c1 --- /dev/null +++ b/TinySTL/Test/PriorityQueueTest.cpp @@ -0,0 +1,7 @@ +#include "PriorityQueueTest.h" + +namespace TinySTL{ + namespace PriorityQueueTest{ + + } +} \ No newline at end of file diff --git a/TinySTL/Test/PriorityQueueTest.h b/TinySTL/Test/PriorityQueueTest.h new file mode 100644 index 0000000..9a3f25c --- /dev/null +++ b/TinySTL/Test/PriorityQueueTest.h @@ -0,0 +1,20 @@ +#ifndef _PRIORITY_QUEUE_TEST_H_ +#define _PRIORITY_QUEUE_TEST_H_ + +#include "TestUtil.h" + +#include "../Queue.h" +#include + +#include + +namespace TinySTL{ + namespace PriorityQueueTest{ + template + using stdPQ = std::priority_queue < T > ; + template + using tsPQ = TinySTL::priority_queue < T > ; + } +} + +#endif \ No newline at end of file