forked from pezy/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TEST.cc
32 lines (29 loc) · 936 Bytes
/
TEST.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#define CATCH_CONFIG_MAIN
#include "../Catch/single_include/catch.hpp"
#include "solution.h"
std::vector<int> showIntervals(const std::vector<Interval> &intervals) {
std::vector<int> ret;
for (const auto &interval : intervals) {
ret.push_back(interval.start);
ret.push_back(interval.end);
}
return ret;
}
TEST_CASE("Insert Interval", "insert")
{
Solution s;
SECTION("Example 1")
{
std::vector<Interval> vec{Interval(1,3), Interval(6,9)};
Interval newInterval(2,5);
std::vector<int> ret{1,5,6,9};
REQUIRE(ret == showIntervals(s.insert(vec, newInterval)));
}
SECTION("Example 2")
{
std::vector<Interval> vec{Interval(1,2),Interval(3,5),Interval(6,7),Interval(8,10),Interval(12,16)};
Interval newInterval(4,9);
std::vector<int> ret{1,2,3,10,12,16};
REQUIRE(ret == showIntervals(s.insert(vec, newInterval)));
}
}