mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using Xunit;
|
|
|
|
namespace Squidex.Infrastructure
|
|
{
|
|
public class DisposableObjectBaseTests
|
|
{
|
|
public sealed class MyDisposableObject : DisposableObjectBase
|
|
{
|
|
public int DisposeCallCount { get; set; }
|
|
|
|
protected override void DisposeObject(bool disposing)
|
|
{
|
|
DisposeCallCount++;
|
|
}
|
|
|
|
public void Ensure()
|
|
{
|
|
ThrowIfDisposed();
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_not_throw_exception_when_not_disposed()
|
|
{
|
|
var sut = new MyDisposableObject();
|
|
|
|
sut.Ensure();
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_dispose_once()
|
|
{
|
|
var sut = new MyDisposableObject();
|
|
|
|
sut.Dispose();
|
|
sut.Dispose();
|
|
|
|
Assert.True(sut.IsDisposed);
|
|
|
|
Assert.Equal(1, sut.DisposeCallCount);
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_throw_exception_when_disposed()
|
|
{
|
|
var sut = new MyDisposableObject();
|
|
|
|
sut.Dispose();
|
|
|
|
Assert.Throws<ObjectDisposedException>(() => sut.Ensure());
|
|
}
|
|
}
|
|
}
|
|
|