| 1234567891011121314151617181920212223242526272829303132 |
- {
- "Categories" : [
- {
- "Name" : "Filesystem",
- "Description" : "Filesystem access with OS-dependent implementation",
- "Tests" : [
- {
- "Name" : "FileCreateThenFileExists",
- "Description" : "After file_create, file_exists returns true"
- },
- {
- "Name" : "FileDeleteThenFileExists",
- "Description" : "After file_delete, file_exists returns false"
- }
- ]
- },
- {
- "Name" : "Json",
- "Description" : "Reading and Writing objects in Json format",
- "Tests" : [
- {
- "Name" : "SerializeObjectWithTwoProperties",
- "Description" : "Serializaton of an object with an int and a string property"
- },
- {
- "Name" : "DeserializeObjectWithTwoProperties",
- "Description" : "Deserializaton of an object with an int and a string property"
- }
- ]
- }
- ]
- }
|