-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a767210
commit 7c1b9ce
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
jproblog/src/test/java/de/tudresden/inf/lat/jproblog/ProblogProcessorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package de.tudresden.inf.lat.jproblog; | ||
|
||
|
||
import java.io.*; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
/** | ||
* Test class for ProblogProcessor. | ||
* @author Julian Mendez | ||
* | ||
*/ | ||
public class ProblogProcessorTest { | ||
|
||
/** | ||
* This ensures that an instance of ProblogProcessor can properly test whether Python is installed. | ||
*/ | ||
@Test | ||
public void testIsPythonInstalled() { | ||
ProblogProcessor instance = new ProblogProcessor(true); | ||
instance.isPythonInstalled(); | ||
} | ||
|
||
} |