Guest User

Untitled

a guest
Jan 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1.  
  2. [10:28:55] obraun :: foldl ➜ /tmp/Blatt01 » tree
  3. .
  4. ├── lib
  5. │   └── scalacheck_2.9.0-1-1.9.jar
  6. ├── src
  7. │   └── blatt01
  8. │   ├── Entry.scala
  9. │   ├── PhonebookApp.scala
  10. │   └── Phonebook.scala
  11. └── tests
  12. └── PhonebookSpec.scala
  13.  
  14. 4 directories, 5 files
  15. [10:28:56] obraun :: foldl ➜ /tmp/Blatt01 » cd src
  16. [10:29:10] obraun :: foldl ➜ /tmp/Blatt01/src » scalac blatt01/*.scala
  17. [10:29:27] obraun :: foldl ➜ /tmp/Blatt01/src » tree
  18. .
  19. └── blatt01
  20. ├── Entry.class
  21. ├── Entry.scala
  22. ├── Phonebook$$anonfun$entries$1.class
  23. ├── PhonebookApp.class
  24. ├── PhonebookApp$.class
  25. ├── PhonebookApp$delayedInit$body.class
  26. ├── PhonebookApp.scala
  27. ├── Phonebook.class
  28. ├── Phonebook$.class
  29. └── Phonebook.scala
  30.  
  31. 1 directory, 10 files
  32. [10:29:41] obraun :: foldl ➜ /tmp/Blatt01/lib » cd ..
  33. [10:29:45] obraun :: foldl ➜ /tmp/Blatt01 » cd tests
  34. [10:29:47] obraun :: foldl ➜ /tmp/Blatt01/tests » scalac -cp ../lib/scalacheck_2.9.0-1-1.9.jar:../src PhonebookSpec.scala
  35. [10:30:17] obraun :: foldl ➜ /tmp/Blatt01/tests » scala -cp ../lib/scalacheck_2.9.0-1-1.9.jar:../src PhonebookSpec
  36. + Phonebook.Another toString for an Entry test: OK, passed 100 tests.
  37. + Phonebook.Add one entry: OK, passed 100 tests.
  38. + Phonebook.++= after map += does not change anything: OK, passed 100 tests
  39. .
  40. + Phonebook.Size after added set: OK, passed 100 tests.
  41. + Phonebook.Size after added same set twice: OK, passed 100 tests.
Add Comment
Please, Sign In to add comment