Overview of the SQLite Test Script Interpreter
masterThe Test Script Interpreter is a tool designed to read and interpret ASCII text script files (ending in .test) containing SQL commands and desired results. It automates the process of executing SQL and verifying that the actual results match the expected results, reporting any discrepancies found.
Key Behaviors:
- Isolation: Each script is evaluated independently. Context (like settings or state) does not carry forward between scripts.
- Cleanup: All open database connections are closed at the end of a script, and all database files created during the script's execution are deleted upon completion.