Skip to content

Commit

Permalink
Add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
matthijsln committed Jun 27, 2023
1 parent 29503d1 commit d50fa79
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/test/java/nl/b3p/tailormap/api/FailingIntegrationTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright (C) 2023 B3Partners B.V.
*
* SPDX-License-Identifier: MIT
*/

package nl.b3p.tailormap.api;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.*;

public class FailingIntegrationTest {
@Test
void failing() {
fail("Just for testing a failed test");
}
}

0 comments on commit d50fa79

Please sign in to comment.