Advertisement
Newlyt

Error Log

Feb 20th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. === cs1302.list.LinkedStringList ===
  2. +++ add(int, String) +++
  3. <add(0, "a"), add(1, "b"), add(0, "c"): c, a, b>
  4. FAIL: An add returned false, makeString(String) is faulty, or the elements were added in the wrong order
  5. +++ add(int, StringList) +++
  6. <add(0, otherSL), add(1, anotherSL): d, s, c, a>
  7. FAIL: An add returned false, makeString(String) is faulty, or the elements were added in the wrong order
  8. +++ add(String) +++
  9. <add("a"), add("b"), add("c"): a, b, c>
  10. FAIL: An add returned false, makeString(String) is faulty, or the elements were added in the wrong order
  11. +++ add(StringList) +++
  12. <add(otherSL), add(anotherSL): s, c, a, p>
  13. FAIL: An add returned false, makeString(String) is faulty, or the elements were added in the wrong order
  14. +++ distinct() +++
  15. FAIL: Resulting list contains duplicate elements
  16. +++ makeString() +++
  17. FAIL: Failed to make String
  18. +++ makeString(String) +++
  19. FAIL: Failed to make String
  20. +++ remove(int) +++
  21. FAIL: Did not remove element or failed to return removed value
  22. +++ reverse() +++
  23. FAIL: Resulting list contains duplicate elements
  24. +++ set(int, String) +++
  25. <set(1, "d"): adc>
  26. FAIL: Did not set or failed to return replaced element
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement