Skip to content

Commit 6f01d49

Browse files
committed
Add some awkward test cases
1 parent 4f4374a commit 6f01d49

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

ycmd/tests/clangd/testdata/general_fallback/make_drink.cc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,17 @@ int main( int , char ** )
77
make_drink( TypeOfDrink::COFFEE, 10.0, Flavour::ELDERFLOWER );
88
make_drink( TypeOfDrink::JUICE, Temperature::COLD, 1 );
99
}
10+
11+
void test_right_edge_80()
12+
{
13+
make_drink(
14+
TypeOfDrink::COFFEE,
15+
10, Flavour::ORANGE_AND_PINEAPPLE);
16+
}
17+
18+
void test_left_edge()
19+
{
20+
make_drink( TypeOfDrink::JUICE,
21+
Temperature
22+
::WARM, 10 );
23+
}

0 commit comments

Comments
 (0)