internal void Copy_WithOneElement_ReturnsIdenticalList() { // Arrange var unique = new UniqueList <string>("0"); // Act var copy = unique.Copy(); // Assert Assert.Equal(unique, copy); }