You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -199,7 +199,7 @@ Build your 6502 project using [CA65 assembler](https://cc65.github.io/doc/ca65.h
199
199
200
200
### Create unit test
201
201
202
-
Create test scinario files containing the three key items in JSON format:
202
+
Create test scenario files containing the three key items in JSON format:
203
203
204
204
-_Test target_
205
205
the starting address of the test procedure
@@ -210,7 +210,7 @@ Create test scinario files containing the three key items in JSON format:
210
210
211
211
#### JSON Schema file
212
212
213
-
The tool also provides a [JSON Schema](https://json-schema.org/) document that makes it easy to create test scinario files.
213
+
The tool also provides a [JSON Schema](https://json-schema.org/) document that makes it easy to create test scenario files.
214
214
215
215
If you use [Visual Studio Code](https://code.visualstudio.com/), it will tell you about formatting error and element completion candidates based on JSON Schema without any extensions.
216
216
@@ -219,14 +219,14 @@ If you use [Visual Studio Code](https://code.visualstudio.com/), it will tell yo
219
219
Run the tool with the prepared debug information file and test scenario file:
@@ -243,7 +243,7 @@ You can find all command line arguments in help:
243
243
-d[DEBUG], --debug=[DEBUG] Specify the path of the debug
244
244
information file used for testing.
245
245
-t[TEST], --test=[TEST] (REQUIRED)
246
-
Specify the path of the test scinario
246
+
Specify the path of the test scenario
247
247
file.
248
248
-c[COVERAGE],
249
249
--coverage=[COVERAGE] Specify the path of the coverage file.
@@ -263,7 +263,7 @@ You can find all command line arguments in help:
263
263
Some options can be specified either as command line arguments or test scenario file ([See example](https://github.com/AsaiYusuke/6502_test_executor/blob/master/example/test/ok/customize.configurations.test.json)).
264
264
If both are specified, the values in the test scenario file are adopted.
args::ArgumentParser parser("6502 test executor");
9
9
args::HelpFlag help(parser, "HELP", "Show this help menu.", {'h', "help"});
10
10
debug_file_path = new args::ValueFlag<string>(parser, "DEBUG", "Specify the path of the debug information file used for testing.", {'d', "debug"});
11
-
test_file_path = new args::ValueFlag<string>(parser, "TEST", "(REQUIRED)\nSpecify the path of the test scinario file.", {'t', "test"}, args::Options::Required);
11
+
test_file_path = new args::ValueFlag<string>(parser, "TEST", "(REQUIRED)\nSpecify the path of the test scenario file.", {'t', "test"}, args::Options::Required);
12
12
13
13
coverage_file_path = new args::ValueFlag<string>(parser, "COVERAGE", "Specify the path of the coverage file.", {'c', "coverage"});
14
14
coverage_segment_names = new args::ValueFlag<string>(parser, "SEGMENT", "Specify the segment names for coverage.", {'s', "segment"});
0 commit comments