Merge branch 'master' of git.touhou.dev:StellatedCUBE/ShintenScript into master

This commit is contained in:
Sen 2023-02-02 14:06:16 +00:00
commit ec8ff367c0
1 changed files with 6 additions and 0 deletions

View File

@ -53,3 +53,9 @@ Many executions should be run in order to get a large sample of times.
Ideally, there should be tests run in multiple different environments, such as different hardware (Different ranges of PCs, mobile devices, consoles, etc.) and execution backends (.NET, Mono, il2cpp, etc.) Ideally, there should be tests run in multiple different environments, such as different hardware (Different ranges of PCs, mobile devices, consoles, etc.) and execution backends (.NET, Mono, il2cpp, etc.)
Performing sensible benchmarks requires the codebase to be near done, and require data of what users program, so these are best performed in the Verify phase. Performing sensible benchmarks requires the codebase to be near done, and require data of what users program, so these are best performed in the Verify phase.
# Scaffolding
The program consists of mostly pure functions, which do not require scaffolding for testing. Larger subsystems may require it, as the software runs in layers (passes).
For example, providing a scaffold lexer should be used to create parser tests that are lexer independent.
Likewise, ensuring ASTs can be geenrated without a parser is required for testing code evaluation without invoking the lexer or parser.