Ejemplo n.º 1
0
        public void Modify_ArgumentNullException_Model()
        {
            // Arrange
            IScriptModifier modifier = new CommentOutUnnamedDefaultConstraintDropsModifier();

            // Act & Assert
            // ReSharper disable AssignNullToNotNullAttribute
            Assert.Throws <ArgumentNullException>(() => modifier.ModifyAsync(null));
            // ReSharper restore AssignNullToNotNullAttribute
        }
Ejemplo n.º 2
0
        public async Task Modify_CorrectModification_Async()
        {
            // Arrange
            IScriptModifier modifier      = new CommentOutUnnamedDefaultConstraintDropsModifier();
            var             project       = new SqlProject("", "", "");
            var             configuration = new ConfigurationModel();
            var             directories   = new DirectoryPaths("projectDirectory", "latestArtifactsDirectory", "newArtifactsDirectory");
            var             sourcePaths   = new DeploySourcePaths("newDacpacPath", "publishProfilePath", "previousDacpacPath");
            var             targetPaths   = new DeployTargetPaths("deployScriptPath", "deployReportPath");
            var             paths         = new PathCollection(directories, sourcePaths, targetPaths);
            var             model         = new ScriptModificationModel(MultipleDropDefaultConstraintStatements, project, configuration, paths, new Version(1, 0, 0), false);

            // Act
            await modifier.ModifyAsync(model);

            // Assert
            Assert.AreEqual(MultipleDropDefaultConstraintStatementsCommented, model.CurrentScript);
        }