Skip to content

Commit

Permalink
explain the main change detector test
Browse files Browse the repository at this point in the history
  • Loading branch information
antivoland committed Jul 23, 2023
1 parent 69a640d commit 1188c5c
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ class ChangeDetectorTest {
@Autowired
AirportDataset airportDataset;

/*
The main change detector test, which compares outputs from the
parallelized brute force and segmentation-based method implementations.
The idea is that the approach based on brute force is simple, valid,
provides all the existing changes and its execution time isn't that long,
so the CI build will take about a minute, which is completely acceptable.
*/
@Test
void test() {
AtomicInteger nextId = new AtomicInteger(0);
Expand Down

0 comments on commit 1188c5c

Please sign in to comment.