using NUnit.Framework; namespace Deltares.DamEngine.Interface.Tests { [TestFixture] public class EngineInterfaceTests { [Test] [ExpectedException(typeof(EngineInterfaceException))] public void ThrowWhenCalledWithEmptyParameters() { EngineInterface engineInterface = new EngineInterface(""); } } }