//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOAuth.Test.Messaging {
using System.Collections;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
internal class CollectionAssert {
internal static void AreEquivalent(ICollection expected, ICollection actual) {
ICollection expectedNonGeneric = new List(expected);
ICollection actualNonGeneric = new List(actual);
CollectionAssert.AreEquivalent(expectedNonGeneric, actualNonGeneric);
}
}
}