// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using Xunit; namespace Microsoft.AspNet.Identity.Test { public static class IdentityResultAssert { public static void IsSuccess(IdentityResult result) { Assert.NotNull(result); Assert.True(result.Succeeded); } public static void IsFailure(IdentityResult result) { Assert.NotNull(result); Assert.False(result.Succeeded); } public static void IsFailure(IdentityResult result, string error) { Assert.NotNull(result); Assert.False(result.Succeeded); Assert.Equal(error, result.Errors.First()); } } }