use of org.alfresco.util.schemacomp.DiffContext in project alfresco-repository by Alfresco.
the class NameValidatorTest method setUp.
@Before
public void setUp() throws Exception {
validator = new NameValidator();
validationResults = new Results();
ctx = new DiffContext(new Oracle9Dialect(), validationResults, null, null);
}
use of org.alfresco.util.schemacomp.DiffContext in project alfresco-repository by Alfresco.
the class DbObjectTestBase method baseSetUp.
@Before
public final void baseSetUp() {
// Check that the correct calls happened in the correct order.
List<Object> mocks = getMocksUsedInDiff();
inOrder = inOrder(mocks.toArray());
ctx = new DiffContext(dialect, differences, null, null);
}
use of org.alfresco.util.schemacomp.DiffContext in project alfresco-repository by Alfresco.
the class SchemaVersionValidatorTest method setUp.
@Before
public void setUp() {
validator = new SchemaVersionValidator();
results = new Results();
ctx = new DiffContext(null, results, null, null);
}
use of org.alfresco.util.schemacomp.DiffContext in project alfresco-repository by Alfresco.
the class TypeNameOnlyValidatorTest method setUp.
@Before
public void setUp() throws Exception {
validator = new TypeNameOnlyValidator();
validationResults = new Results();
ctx = new DiffContext(new SQLServerDialect(), validationResults, null, null);
}
use of org.alfresco.util.schemacomp.DiffContext in project alfresco-repository by Alfresco.
the class IndexColumnsValidatorTest method setUp.
@Before
public void setUp() throws Exception {
validator = new IndexColumnsValidator();
validationResults = new Results();
ctx = new DiffContext(new Oracle9Dialect(), validationResults, null, null);
}
Aggregations