Skip to content

Commit

Permalink
Migrating to JUnit 5.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Feb 20, 2024
1 parent 837d750 commit 124d880
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
8 changes: 5 additions & 3 deletions src/test/java/org/luwrain/antlr/latex/LatexTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2012-2022 Michael Pozhidaev <[email protected]>
Copyright 2012-2024 Michael Pozhidaev <[email protected]>
This file is part of LUWRAIN.
Expand All @@ -20,9 +20,11 @@

import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.tree.*;
import org.junit.*;

public class LatexTest extends Assert
import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.*;

public class LatexTest
{
@Test public void twoPlusTwo() throws Exception
{
Expand Down
7 changes: 4 additions & 3 deletions src/test/java/org/luwrain/antlr/ly/LilypondTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2012-2022 Michael Pozhidaev <[email protected]>
Copyright 2012-2024 Michael Pozhidaev <[email protected]>
This file is part of LUWRAIN.
Expand All @@ -21,9 +21,10 @@
import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.tree.*;

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

public class LilypondTest extends Assert
public class LilypondTest
{
@Test public void version() throws Exception
{
Expand Down

0 comments on commit 124d880

Please sign in to comment.