Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit d9d6fcf

Browse files
committed
#113 renamed DdrLaunched to DdrWorkflow
1 parent c6f260a commit d9d6fcf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/main/kotlin/org/objectionary/ddr/launch/DdrWorkflow.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import org.w3c.dom.Document
1616
*
1717
* @property documents all documents from analyzed directory
1818
*/
19-
class DdrLaunched(val documents: MutableMap<Document, String>) {
19+
class DdrWorkflow(val documents: MutableMap<Document, String>) {
2020
/** @property graph decoration hierarchy graph of xmir files from analyzed directory */
2121
private val graph = GraphBuilder(documents).createGraph()
2222

src/main/kotlin/org/objectionary/ddr/launch/Main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ package org.objectionary.ddr.launch
2929
* - args[0] path to the folder with the program to be analyzed
3030
*/
3131
fun main(args: Array<String>) {
32-
DdrLaunched(path = args[0]).launch()
32+
DdrWorkflow(path = args[0]).launch()
3333
}

src/test/kotlin/org/objectionary/ddr/integration/IntegrationDdrLaunchedBase.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
package org.objectionary.ddr.integration
2626

2727
import org.objectionary.ddr.TestBase
28-
import org.objectionary.ddr.launch.DdrLaunched
28+
import org.objectionary.ddr.launch.DdrWorkflow
2929
import org.apache.commons.io.FileUtils
3030
import org.slf4j.LoggerFactory
3131
import java.io.BufferedReader
@@ -41,7 +41,7 @@ open class IntegrationDdrLaunchedBase : TestBase {
4141

4242
override fun doTest() {
4343
val path = getTestName()
44-
DdrLaunched(constructInPath(path)).launch()
44+
DdrWorkflow(constructInPath(path)).launch()
4545
val actualFiles: MutableList<String> = mutableListOf()
4646
Files.walk(Paths.get(constructOutPath(path)))
4747
.filter(Files::isRegularFile)

src/test/kotlin/org/objectionary/ddr/integration/IntegrationDdrWorkflowTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package org.objectionary.ddr.integration
33
import org.junit.jupiter.api.Test
44
import kotlin.test.Ignore
55

6-
class IntegrationDdrLaunchedTest : IntegrationDdrLaunchedBase() {
6+
class IntegrationDdrWorkflowTest : IntegrationDdrLaunchedBase() {
77
@Test
88
@Ignore
99
fun `test fibonacci`() = doTest()

0 commit comments

Comments
 (0)