mirror of
https://github.com/chylex/.NET-Community-Toolkit.git
synced 2024-11-24 07:42:45 +01:00
50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using CommunityToolkit.Mvvm.Collections;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace CommunityToolkit.Mvvm.UnitTests.Collections;
|
|
|
|
[TestClass]
|
|
public class Test_ObservableGroupedCollection
|
|
{
|
|
[TestMethod]
|
|
public void Test_ObservableGroupedCollection_Ctor_ShouldHaveExpectedValues()
|
|
{
|
|
ObservableGroupedCollection<string, int> groupCollection = new();
|
|
|
|
Assert.AreEqual(groupCollection.Count, 0);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_ObservableGroupedCollection_Ctor_WithGroups_ShouldHaveExpectedValues()
|
|
{
|
|
List<IGrouping<string, int>> groups = new()
|
|
{
|
|
new IntGroup("A", new[] { 1, 3, 5 }),
|
|
new IntGroup("B", new[] { 2, 4, 6 }),
|
|
};
|
|
ObservableGroupedCollection<string, int> groupCollection = new(groups);
|
|
|
|
Assert.AreEqual(groupCollection.Count, 2);
|
|
|
|
Assert.AreEqual(groupCollection[0].Key, "A");
|
|
CollectionAssert.AreEqual(groupCollection[0], new[] { 1, 3, 5 });
|
|
|
|
Assert.AreEqual(groupCollection[1].Key, "B");
|
|
CollectionAssert.AreEqual(groupCollection[1], new[] { 2, 4, 6 });
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentNullException))]
|
|
public void Test_ObservableGroupedCollection_Ctor_NullCollection()
|
|
{
|
|
_ = new ObservableGroupedCollection<string, int>(null!);
|
|
}
|
|
}
|