using NUnit.Framework; namespace Chernobyl.Creation { [TestFixture, Description("Test the DefaultConstructorFactory type.")] public class DefaultConstructorFactoryTests : FactoryTests { protected override IFactory CreateSuccessfulFactory() { return new DefaultConstructorFactory(); } protected override IFactory CreateFailureFactory() { // The Default shouldn't fail. return null; } protected override int GetProperlyCreatedItem() { return 0; } } }