public void GivenAScriptRequest_WhenSchemaIdFound_ThenReturnScriptSuccess()
        {
            ActionResult result = _schemaController.SqlScript(1);
            string       script = result.ToString();

            Assert.NotNull(script);
        }
Exemple #2
0
 public void GivenAScriptRequest_WhenNotImplemented_ThenNotImplementedShouldBeThrown()
 {
     Assert.Throws <NotImplementedException>(() => _schemaController.SqlScript(0));
 }