|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Drawing.Design.Tests;
public class CategoryNameCollectionTests
{
[Fact]
public void Ctor_StringArray()
{
string[] value = ["1", "2", "3"];
CategoryNameCollection collection = new(value);
Assert.Equal(value, collection.Cast<string>());
}
[Fact]
public void Ctor_CategoryNameCollection()
{
string[] value = ["1", "2", "3"];
CategoryNameCollection sourceCollection = new(value);
CategoryNameCollection collection = new(sourceCollection);
Assert.Equal(value, collection.Cast<string>());
}
[Fact]
public void Indexer_Get_ReturnsExpected()
{
string[] value = ["1", "2", "3"];
CategoryNameCollection sourceCollection = new(value);
for (int i = 0; i < sourceCollection.Count; i++)
{
string expectedValue = value[i];
Assert.Equal(expectedValue, sourceCollection[i]);
Assert.True(sourceCollection.Contains(expectedValue));
Assert.Equal(i, sourceCollection.IndexOf(expectedValue));
}
}
[Fact]
public void CopyTo_Valid_Success()
{
string[] value = ["1", "2", "3"];
CategoryNameCollection sourceCollection = new(value);
string[] destination = new string[5];
sourceCollection.CopyTo(destination, 1);
Assert.Equal(new string[] { null, "1", "2", "3", null }, destination);
}
}
|