tracks/delphi/exercises/binary-search/uBinarySearchTest.pas in trackler-2.0.8.12 vs tracks/delphi/exercises/binary-search/uBinarySearchTest.pas in trackler-2.0.8.13
- old
+ new
@@ -8,41 +8,42 @@
[TestFixture]
TBinarySearchTest = class(TObject)
public
[Test]
+// [Ignore('Comment the "[Ignore]" statement to run the test')]
procedure Should_return_minus_one_when_an_empty_array_is_searched;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_be_able_to_find_a_value_in_a_single_element_array_with_one_access;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_return_minus_one_if_a_value_is_less_than_the_element_in_a_single_element_array;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_return_minus_one_if_a_value_is_greater_than_the_element_in_a_single_element_array;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_find_an_element_in_a_longer_array;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_find_elements_at_the_beginning_of_an_array;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_find_elements_at_the_end_of_an_array;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_return_minus_one_if_a_value_is_less_than_all_elements_in_a_long_array;
[Test]
- [Ignore('comment this line to activate this test')]
+ [Ignore]
procedure Should_return_minus_one_if_a_value_is_greater_than_all_elements_in_a_long_array;
end;
implementation
uses System.Generics.Collections, uBinarySearch;