aspnetcore/test/Microsoft.AspNet.Razor.Test/Utils/DisposableActionTest.cs

27 lines
699 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Razor.Utils;
using Xunit;
namespace Microsoft.AspNet.Razor.Test.Utils
{
public class DisposableActionTest
{
[Fact]
public void ActionIsExecutedOnDispose()
{
// Arrange
var called = false;
var action = new DisposableAction(() => { called = true; });
// Act
action.Dispose();
// Assert
Assert.True(called, "The action was not run when the DisposableAction was disposed");
}
}
}