24 lines
271 B
C++
24 lines
271 B
C++
|
#include <unity/unity.h>
|
||
|
#include <unity/unity_internals.h>
|
||
|
#include <vector>
|
||
|
#include "algorithm.hpp"
|
||
|
|
||
|
// Function is defined here for testing
|
||
|
|
||
|
void setUp(void)
|
||
|
{
|
||
|
;
|
||
|
}
|
||
|
|
||
|
void tearDown(void)
|
||
|
{
|
||
|
;
|
||
|
}
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
UNITY_BEGIN();
|
||
|
return UNITY_END();
|
||
|
}
|
||
|
|