// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using System; using Microsoft.SqlTools.ServiceLayer.DacFx; using Xunit; namespace Microsoft.SqlTools.ServiceLayer.UnitTests.DacFx { public class DacFxTests { [Fact] public void ExtractParseVersionShouldThrowExceptionGivenInvalidVersion() { string invalidVersion = "invalidVerison"; Assert.Throws(() => ExtractOperation.ParseVersion(invalidVersion)); } } }