using NUnit.Framework; namespace Chernobyl.StateMachine { [TestFixture, Description("Tests for the State type.")] public class StateImplementationTests : StateTests { protected override IState CreateState() { return new State(); } } }