Skip to content

Commit de9628d

Browse files
committed
spotless applied to TestSMTMod
1 parent e34c1ff commit de9628d

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

key.core/src/test/java/de/uka/ilkd/key/smt/TestSMTMod.java

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
/* This file is part of KeY - https://key-project.org
2+
* KeY is licensed under the GNU General Public License Version 2
3+
* SPDX-License-Identifier: GPL-2.0-only */
14
package de.uka.ilkd.key.smt;
25

6+
import java.io.File;
7+
38
import de.uka.ilkd.key.control.DefaultUserInterfaceControl;
49
import de.uka.ilkd.key.control.KeYEnvironment;
510
import de.uka.ilkd.key.proof.Goal;
@@ -8,18 +13,18 @@
813
import de.uka.ilkd.key.smt.solvertypes.SolverType;
914
import de.uka.ilkd.key.smt.solvertypes.SolverTypeImplementation;
1015
import de.uka.ilkd.key.smt.solvertypes.SolverTypes;
11-
import org.junit.Test;
16+
1217
import org.key_project.util.helper.FindResources;
18+
19+
import org.junit.Test;
1320
import org.slf4j.Logger;
1421
import org.slf4j.LoggerFactory;
1522

16-
1723
import static org.junit.jupiter.api.Assertions.*;
1824

19-
import java.io.File;
20-
2125
/**
2226
* This class is for testing the translation of modulo from KeY to SMT
27+
*
2328
* @author Nils Buchholz, 2024
2429
*/
2530
public class TestSMTMod {
@@ -41,12 +46,13 @@ public class TestSMTMod {
4146
/**
4247
* This tests if x mod y is non-negative and x mod y < |y| for y != 0
4348
* thus satisfying the definition of euclidean modulo
49+
*
4450
* @throws ProblemLoaderException Occured Exception during load of problem file
4551
*/
4652
@Test
4753
public void testModSpec() throws ProblemLoaderException {
4854
KeYEnvironment<DefaultUserInterfaceControl> env =
49-
KeYEnvironment.load(new File(testCaseDirectory, "smt/modSpec.key"));
55+
KeYEnvironment.load(new File(testCaseDirectory, "smt/modSpec.key"));
5056
try {
5157
Proof proof = env.getLoadedProof();
5258
assertNotNull(proof);

0 commit comments

Comments
 (0)