|
| 1 | +/* |
| 2 | + * MIT License |
| 3 | + * |
| 4 | + * Copyright (c) 2018 Christopher Friedt |
| 5 | + * |
| 6 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | + * of this software and associated documentation files (the "Software"), to deal |
| 8 | + * in the Software without restriction, including without limitation the rights |
| 9 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | + * copies of the Software, and to permit persons to whom the Software is |
| 11 | + * furnished to do so, subject to the following conditions: |
| 12 | + * |
| 13 | + * The above copyright notice and this permission notice shall be included in |
| 14 | + * all copies or substantial portions of the Software. |
| 15 | + * |
| 16 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 22 | + * SOFTWARE. |
| 23 | + */ |
| 24 | + |
| 25 | +#include <gtest/gtest.h> |
| 26 | + |
| 27 | +#include "split-a-string-in-balanced-strings.cpp" |
| 28 | + |
| 29 | +TEST(SplitAStringInBalancedStrings, Test_RLRRLLRLRL) { |
| 30 | + string input = "RLRRLLRLRL"; |
| 31 | + vector<string> expected_vs = { |
| 32 | + "RL", |
| 33 | + "RRLL", |
| 34 | + "RL", |
| 35 | + "RL", |
| 36 | + }; |
| 37 | + int expected_int = expected_vs.size(); |
| 38 | + int actual_int = Solution().balancedStringSplit(input); |
| 39 | + EXPECT_EQ(actual_int, expected_int); |
| 40 | +} |
| 41 | + |
| 42 | +TEST(SplitAStringInBalancedStrings, Test_RLLLLRRRLR) { |
| 43 | + string input = "RLLLLRRRLR"; |
| 44 | + vector<string> expected_vs = { |
| 45 | + "RL", |
| 46 | + "LLLRRR", |
| 47 | + "LR", |
| 48 | + }; |
| 49 | + int expected_int = expected_vs.size(); |
| 50 | + int actual_int = Solution().balancedStringSplit(input); |
| 51 | + EXPECT_EQ(actual_int, expected_int); |
| 52 | +} |
| 53 | + |
| 54 | +TEST(SplitAStringInBalancedStrings, Test_LLLLRRRR) { |
| 55 | + string input = "LLLLRRRR"; |
| 56 | + vector<string> expected_vs = { |
| 57 | + "LLLLRRRR", |
| 58 | + }; |
| 59 | + int expected_int = expected_vs.size(); |
| 60 | + int actual_int = Solution().balancedStringSplit(input); |
| 61 | + EXPECT_EQ(actual_int, expected_int); |
| 62 | +} |
| 63 | + |
| 64 | +TEST(SplitAStringInBalancedStrings, Test_RLRRRLLRLL) { |
| 65 | + string input = "RLRRRLLRLL"; |
| 66 | + vector<string> expected_vs = { |
| 67 | + "RL", |
| 68 | + "RRRLLRLL", |
| 69 | + }; |
| 70 | + int expected_int = expected_vs.size(); |
| 71 | + int actual_int = Solution().balancedStringSplit(input); |
| 72 | + EXPECT_EQ(actual_int, expected_int); |
| 73 | +} |
0 commit comments