using NUnit.Framework; using RecrownedGTK.Types; namespace RecrownedGTK.Tests.Types { [TestFixture] public class RectangleTest { Rectangle rectangle; [SetUp] public void Setup() { rectangle = new Rectangle(3, 4, 5, 10); } [Test] public void TestArea() { Assert.AreEqual(rectangle.Area, 50); } } }