create test states table if it not exists yet.
output DDL for creating of table for test states, which have next strcture:
output DDL for creating of table for test states, which have next strcture:
create table {testStatesTableName} ( rtype VARCHAR(6) not null, value VARCHAR(128) not null, primary key(rtype, value) );
output DDL for dropping of test states table
name of table, where test states information is contained.
name of table, where test states information is contained. by default: TEST_STATES.
FixtureAccess helper for relation databases. It can be mixed in you implementation of fixture acceess for functionality of restoring and saving information about states.