aspnetcore/test/Microsoft.TestCommon/Assert.cs

14 lines
511 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace Microsoft.TestCommon
{
// This extends xUnit.net's Assert class, and makes it partial so that we can
// organize the extension points by logical functionality (rather than dumping them
// all into this single file).
//
// See files named XxxAssertions for root extensions to Assert.
public partial class Assert : Xunit.Assert
{
}
}