Skip to content

Commit

Permalink
chore: add dummy test to guide project to avoid gradle deprecation wa…
Browse files Browse the repository at this point in the history
…rning
  • Loading branch information
ursjoss committed Jul 13, 2024
1 parent 4990109 commit 512b830
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
import ch.difty.kris.domain.RisRecord;
import ch.difty.kris.domain.RisType;
import io.reactivex.Observable;
import org.junit.jupiter.api.Test;

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

@SuppressWarnings("ALL")
public class GuideExamples {
Expand Down Expand Up @@ -214,4 +217,9 @@ void getListOfRisTagsAsString() {
// end::getListOfRisTagsAsString[]
System.out.println(namesOfAllRisTags);
}

@Test
void dummyTest() {
assertEquals(true, true);
}
}

0 comments on commit 512b830

Please sign in to comment.