Advertisement
Guest User

Untitled

a guest
Mar 9th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.34 KB | None | 0 0
  1. class AddTest extends FlatSpec with Matchers {
  2.     "Insert values into empty Task list" should "return list of these values" in {
  3.       MyModule.add("Task 1", "To analyze the received data", 0, 60)
  4.       MyModule.Task() must have('name("Task_1"),
  5.        'description("To analyze the received data"),
  6.         'priority(0), 'end(60))
  7.  
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement