This repository was archived by the owner on Apr 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
main/kotlin/org/objectionary/ddr/launch
test/kotlin/org/objectionary/ddr/integration Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import org.w3c.dom.Document
16
16
*
17
17
* @property documents all documents from analyzed directory
18
18
*/
19
- class DdrLaunched (val documents : MutableMap <Document , String >) {
19
+ class DdrWorkflow (val documents : MutableMap <Document , String >) {
20
20
/* * @property graph decoration hierarchy graph of xmir files from analyzed directory */
21
21
private val graph = GraphBuilder (documents).createGraph()
22
22
Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ package org.objectionary.ddr.launch
29
29
* - args[0] path to the folder with the program to be analyzed
30
30
*/
31
31
fun main (args : Array <String >) {
32
- DdrLaunched (path = args[0 ]).launch()
32
+ DdrWorkflow (path = args[0 ]).launch()
33
33
}
Original file line number Diff line number Diff line change 25
25
package org.objectionary.ddr.integration
26
26
27
27
import org.objectionary.ddr.TestBase
28
- import org.objectionary.ddr.launch.DdrLaunched
28
+ import org.objectionary.ddr.launch.DdrWorkflow
29
29
import org.apache.commons.io.FileUtils
30
30
import org.slf4j.LoggerFactory
31
31
import java.io.BufferedReader
@@ -41,7 +41,7 @@ open class IntegrationDdrLaunchedBase : TestBase {
41
41
42
42
override fun doTest () {
43
43
val path = getTestName()
44
- DdrLaunched (constructInPath(path)).launch()
44
+ DdrWorkflow (constructInPath(path)).launch()
45
45
val actualFiles: MutableList <String > = mutableListOf ()
46
46
Files .walk(Paths .get(constructOutPath(path)))
47
47
.filter(Files ::isRegularFile)
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package org.objectionary.ddr.integration
3
3
import org.junit.jupiter.api.Test
4
4
import kotlin.test.Ignore
5
5
6
- class IntegrationDdrLaunchedTest : IntegrationDdrLaunchedBase () {
6
+ class IntegrationDdrWorkflowTest : IntegrationDdrLaunchedBase () {
7
7
@Test
8
8
@Ignore
9
9
fun `test fibonacci` () = doTest()
You can’t perform that action at this time.
0 commit comments