// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlTools.ServiceLayer.Utility; using Xunit; namespace Microsoft.SqlTools.Test.Utility { /// /// Tests for the LongList class /// public class LongListTests { /// /// Add and remove and item in a LongList /// [Fact] public void LongListTest() { var longList = new LongList(); longList.Add('.'); Assert.True(longList.Count == 1); longList.RemoveAt(0); Assert.True(longList.Count == 0); } } }