public void CanRetrieveOracleFactoryWithArgumentString()
        {
            IMigrationProcessorFactory factory = ProcessorFactory.GetFactory("Oracle");

            Assert.IsTrue(factory.GetType() == typeof(OracleProcessorFactory));
        }
        public void CanRetrieveSqlServerCeFactoryWithArgumentString()
        {
            IMigrationProcessorFactory factory = ProcessorFactory.GetFactory("SqlServerCe");

            Assert.IsTrue(factory.GetType() == typeof(SqlServerCeProcessorFactory));
        }
        public void RetrievesSqlServerProcessorFactoryIfArgumentIsSqlServer()
        {
            IMigrationProcessorFactory factory = ProcessorFactory.GetFactory("SqlServer");

            Assert.IsTrue(factory.GetType() == typeof(SqlServerProcessorFactory));
        }
        public void CanRetrieveSqlServer2016FactoryWithArgumentString()
        {
            IMigrationProcessorFactory factory = _migrationProcessorFactoryProvider.GetFactory("SqlServer2016");

            Assert.IsTrue(factory.GetType() == typeof(SqlServer2016ProcessorFactory));
        }
        public void CanRetrieveFactoryWithArgumentString()
        {
            IMigrationProcessorFactory factory = _migrationProcessorFactoryProvider.GetFactory("SQLite");

            Assert.IsTrue(factory.GetType() == typeof(SQLiteProcessorFactory));
        }
        public void CanRetrieveOracleManagedFactoryWithArgumentString()
        {
            IMigrationProcessorFactory factory = _migrationProcessorFactoryProvider.GetFactory("OracleManaged");

            Assert.IsTrue(factory.GetType() == typeof(OracleManagedProcessorFactory));
        }