using NUnit.Framework; namespace Deltares.Maps.Tests.Domain { [TestFixture] public class FeatureRepositoryTest { private IFeatureRepository repository; #region Setup [TestFixtureSetUp] public void FixtureSetup() { } [TestFixtureTearDown] public void FixtureTearDown() { } [SetUp] public void TestSetup() { repository = new FeatureRepository(); } [TearDown] public void TestTearDown() { } #endregion /// /// TODO: make tests /// [Test] public void TestMethod() { } } }