Lines Matching refs:data
107 …u start your local GAE server, you will see empty page as the local datastore do not have any data.
108 So we need to put some sample data into local datastore so that developers are able to continue to
117 ### How to set test data on json files for generating mock data on local dev server
119 If you want to generate some mock data for your local development, you need to set some fake data
121 otherwise you will end up with errors from the mock data dev API.
123 First, in test-plan-report-data.json, you need to set the same number of data under "testCaseNames"
124 and "results". For example, if you put 5 elements of data in "testCaseNames", you should put the sa…
125 number of data under "results".
152 Second, in test-report-data.json file, you need to make sure that "testModules" should have
154 in the test-report-data.json file.
156 test-report-data.json
172 test-plan-report-data.json
189 ### Command to generate mock data through API
191 The next two commands will generate mock data in your local dev datastore.
192 The execution order of the commands is very important, otherwise you can't find some of the data in…
196 curl -d @testdata/test-report-data.json -m 30 -X POST http://127.0.0.1:8080/api/test_data/report -H…
197 curl -d @testdata/test-plan-report-data.json -m 30 -X POST http://127.0.0.1:8080/api/test_data/plan…