using System;
using NUnit.Framework;
namespace Nuclex.Windows.Forms {
/// Unit test for the window manager
[TestFixture]
public class WindowManagerTest {
/// Verifies that the window manager provides a default constructor
[Test]
public void HasDefaultConstructor() {
Assert.DoesNotThrow(
() => new WindowManager()
);
}
}
} // namespace Nuclex.Windows.Forms