tests.json 913 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "Categories" : [
  3. {
  4. "Name" : "Filesystem",
  5. "Description" : "Filesystem access with OS-dependent implementation",
  6. "Tests" : [
  7. {
  8. "Name" : "FileCreateThenFileExists",
  9. "Description" : "After file_create, file_exists returns true"
  10. },
  11. {
  12. "Name" : "FileDeleteThenFileExists",
  13. "Description" : "After file_delete, file_exists returns false"
  14. }
  15. ]
  16. },
  17. {
  18. "Name" : "Json",
  19. "Description" : "Reading and Writing objects in Json format",
  20. "Tests" : [
  21. {
  22. "Name" : "SerializeObjectWithTwoProperties",
  23. "Description" : "Serializaton of an object with an int and a string property"
  24. },
  25. {
  26. "Name" : "DeserializeObjectWithTwoProperties",
  27. "Description" : "Deserializaton of an object with an int and a string property"
  28. }
  29. ]
  30. }
  31. ]
  32. }