Uses of Class
net.hydromatic.sqllogictest.OptionsParser.SuppliedOptions
-
Packages that use OptionsParser.SuppliedOptions Package Description net.hydromatic.sqllogictest SQL Logic Test.net.hydromatic.sqllogictest.executors Various Executor implementations. -
-
Uses of OptionsParser.SuppliedOptions in net.hydromatic.sqllogictest
Fields in net.hydromatic.sqllogictest declared as OptionsParser.SuppliedOptions Modifier and Type Field Description OptionsParser.SuppliedOptions
TestLoader. options
Options that guide the test execution.Methods in net.hydromatic.sqllogictest that return OptionsParser.SuppliedOptions Modifier and Type Method Description OptionsParser.SuppliedOptions
OptionsParser. getOptions()
Get the options produced after parsing the command-line options.OptionsParser.SuppliedOptions
OptionsParser. parse(String... argv)
Parse command-line arguments.Methods in net.hydromatic.sqllogictest with parameters of type OptionsParser.SuppliedOptions Modifier and Type Method Description void
SltTestFile. parse(OptionsParser.SuppliedOptions options)
Parse the contents of the test file.Constructors in net.hydromatic.sqllogictest with parameters of type OptionsParser.SuppliedOptions Constructor Description TestLoader(OptionsParser.SuppliedOptions options)
Creates a new class that reads tests from a directory tree and executes them. -
Uses of OptionsParser.SuppliedOptions in net.hydromatic.sqllogictest.executors
Methods in net.hydromatic.sqllogictest.executors with parameters of type OptionsParser.SuppliedOptions Modifier and Type Method Description TestStatistics
JdbcExecutor. execute(SltTestFile file, OptionsParser.SuppliedOptions options)
Execute all the test in the specified file using this database.TestStatistics
NoExecutor. execute(SltTestFile testFile, OptionsParser.SuppliedOptions options)
abstract TestStatistics
SqlSltTestExecutor. execute(SltTestFile testFile, OptionsParser.SuppliedOptions options)
Executes the specified test file.Constructors in net.hydromatic.sqllogictest.executors with parameters of type OptionsParser.SuppliedOptions Constructor Description HsqldbExecutor(OptionsParser.SuppliedOptions options)
Create a test executor that uses HSQL DB to execute tests.JdbcExecutor(OptionsParser.SuppliedOptions options, String dbUrl, String username, String password)
Create an executor that uses JDBC to run tests.PostgresExecutor(OptionsParser.SuppliedOptions options, String username, String password)
Note: this implementation requires the existence of a database named SLTSqlSltTestExecutor(OptionsParser.SuppliedOptions options)
Create a new test executor.
-