public void TestFixtureSetUp()
        {
            _source = new OracleUnitTest();
             _source.TestFixtureSetUp();

             _destination = new OracleUnitTest();
             _destination.TestFixtureSetUp();

             OracleContext = _destination;
        }
        public void TestFixtureSetUp()
        {
            _sqlContext = new SqlServerUnitTest();
             _oracleContext = new OracleUnitTest();
             _sqlContext.TestFixtureSetUp();
             _oracleContext.TestFixtureSetUp();

             OracleContext = _oracleContext;
        }