From 0bf11138340a0b4ea831282a5449edad35b439ef Mon Sep 17 00:00:00 2001
From: Paul Lorenc <pj@paul-lorenc.com>
Date: Mon, 4 Oct 2021 22:17:56 -0400
Subject: [PATCH] added Hamlet

---
 .../desktop/testdata/ConversationsData.kt     | 54 +++++++++++++++++++
 1 file changed, 54 insertions(+)

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 38cdea48a5..9c46ed649c 100644
--- a/src/test/kotlin/org/briarproject/briar/desktop/testdata/ConversationsData.kt
+++ b/src/test/kotlin/org/briarproject/briar/desktop/testdata/ConversationsData.kt
@@ -35,6 +35,60 @@ val conversations = conversations {
             date = start.plusSeconds(100)
         }
     }
+    conversation {
+        contactName = "Polonius"
+        val start = dt(2019, 2, 24, 22, 22)
+        incoming {
+            text = "My lord, the queen would speak with you, and presently."
+            read = true
+            date = start
+        }
+        outgoing {
+            text = "Do you see yonder cloud that's almost in shape of a camel?"
+            read = true
+            date = start.plusSeconds(100)
+        }
+        incoming {
+            text = "By the mass, and 'tis like a camel, indeed."
+            read = true
+            date = start.plusSeconds(300)
+        }
+        outgoing {
+            text = "Methinks it is like a weasel."
+            read = true
+            date = start.plusSeconds(400)
+        }
+        incoming {
+            text = "It is backed like a weasel."
+            read = true
+            date = start.plusSeconds(500)
+        }
+        outgoing {
+            text = "Or like a whale?"
+            read = true
+            date = start.plusSeconds(550)
+        }
+        incoming {
+            text = "Very like a whale."
+            read = true
+            date = start.plusSeconds(600)
+        }
+        outgoing {
+            text = "Then I will come to my mother by and by. They fool me to the top of my bent. I will come by and by."
+            read = true
+            date = start.plusSeconds(620)
+        }
+        incoming {
+            text = "I will say so."
+            read = true
+            date = start.plusSeconds(680)
+        }
+        outgoing {
+            text = "By and by is easily said."
+            read = true
+            date = start.plusSeconds(777)
+        }
+    }
     conversation {
         contactName = "Dan"
         outgoing {
-- 
GitLab