using Microsoft.VisualStudio.TestTools.UnitTesting; using SyncEngine.SqlServer; namespace SyncEngine.Tests { [TestClass] public class SqlIdentifierHelperTests { [TestMethod] public void SanitizeConstraintName_ReplacesSpaces() { Assert.AreEqual("Switchboard_Items", SqlIdentifierHelper.SanitizeConstraintName("Switchboard Items")); } } }