diff --git a/.idea/runConfigurations/TestListConversationDataKt.xml b/.idea/runConfigurations/TestListConversationDataKt.xml new file mode 100644 index 0000000000000000000000000000000000000000..969cc64f7176225d6bb1e238d625424055f63b5a --- /dev/null +++ b/.idea/runConfigurations/TestListConversationDataKt.xml @@ -0,0 +1,10 @@ +<component name="ProjectRunConfigurationManager"> + <configuration default="false" name="TestListConversationDataKt" type="JetRunConfigurationType" nameIsGenerated="true"> + <option name="MAIN_CLASS_NAME" value="org.briarproject.briar.desktop.testdata.TestListConversationDataKt" /> + <module name="briar-desktop.test" /> + <shortenClasspath name="NONE" /> + <method v="2"> + <option name="Make" enabled="true" /> + </method> + </configuration> +</component> \ No newline at end of file diff --git a/src/test/kotlin/org/briarproject/briar/desktop/testdata/ConversationsData.kt b/src/test/kotlin/org/briarproject/briar/desktop/testdata/ConversationsData.kt index 9c46ed649c2cf87dec65c84cf74869714cb18001..74fee8baa606e5004524e169464025c453446287 100644 --- a/src/test/kotlin/org/briarproject/briar/desktop/testdata/ConversationsData.kt +++ b/src/test/kotlin/org/briarproject/briar/desktop/testdata/ConversationsData.kt @@ -98,12 +98,3 @@ val conversations = conversations { } } } - -fun main(args: Array<String>) { - for (conversation in conversations.persons) { - println("conversation with: ${conversation.name}") - for (message in conversation.messages) { - println(" ${message.direction} ${message.text} ${message.read} ${message.date}") - } - } -} diff --git a/src/test/kotlin/org/briarproject/briar/desktop/testdata/TestListConversationData.kt b/src/test/kotlin/org/briarproject/briar/desktop/testdata/TestListConversationData.kt new file mode 100644 index 0000000000000000000000000000000000000000..192669f8f826fef8013c988b1cd9b3ef908fdc4d --- /dev/null +++ b/src/test/kotlin/org/briarproject/briar/desktop/testdata/TestListConversationData.kt @@ -0,0 +1,10 @@ +package org.briarproject.briar.desktop.testdata + +fun main(args: Array<String>) { + for (conversation in conversations.persons) { + println("conversation with: ${conversation.name}") + for (message in conversation.messages) { + println(" ${message.direction} ${message.text} ${message.read} ${message.date}") + } + } +}