summaryrefslogtreecommitdiff
path: root/cask/actor/test/src/ActorsTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'cask/actor/test/src/ActorsTest.scala')
-rw-r--r--cask/actor/test/src/ActorsTest.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/cask/actor/test/src/ActorsTest.scala b/cask/actor/test/src/ActorsTest.scala
new file mode 100644
index 0000000..2c81e5b
--- /dev/null
+++ b/cask/actor/test/src/ActorsTest.scala
@@ -0,0 +1,17 @@
+package cask.actor
+import utest._
+object ActorsTest extends TestSuite{
+ def tests = Tests{
+ test("hello"){
+ import Context.Simple.global
+
+ sealed trait Msg
+
+ object logger extends SimpleActor[Msg]{
+ def run(msg: Msg) = {
+
+ }
+ }
+ }
+ }
+} \ No newline at end of file