#region CPL License /* Nuclex Framework Copyright (C) 2002-2010 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion #if UNITTEST using System; using System.Collections.Generic; using System.Reflection; using NUnit.Framework; #if ENABLE_SERVICEMANAGER namespace Nuclex.Support.Services { /// Unit Test for the predefined type lister [TestFixture] public class ExplicitTypeListerTest { /// /// Verifies that the type lister correctly takes over a list of types /// supplied manually to the constructor /// [Test] public void TestPredefinedTypesFromParams() { ITypeLister testLister = new ExplicitTypeLister( typeof(ExplicitTypeListerTest), typeof(TestAttribute) ); Assert.That( testLister.GetTypes(), Has.Member(typeof(ExplicitTypeListerTest)).And.Member(typeof(TestAttribute)) ); } /// /// Verifies that the type lister correctly takes over a list of types /// supplied as an enumerable list to the constructor /// [Test] public void TestPredefinedTypesFromEnumerable() { IEnumerable types = typeof(ExplicitTypeListerTest).Assembly.GetTypes(); ITypeLister testLister = new ExplicitTypeLister(types); Assert.That( testLister.GetTypes(), Has.Member(typeof(ExplicitTypeListerTest)) ); } /// /// Verifies that types can be removed from the type lister /// [Test] public void TestRemoveTypesFromLister() { ExplicitTypeLister testLister = new ExplicitTypeLister( typeof(ExplicitTypeListerTest).Assembly.GetTypes() ); Assert.That( testLister.GetTypes(), Has.Member(typeof(ExplicitTypeListerTest)) ); testLister.Types.Remove(typeof(ExplicitTypeListerTest)); Assert.That( testLister.GetTypes(), Has.No.Member(typeof(ExplicitTypeListerTest)) ); } /// /// Verifies that types can be added to the type lister /// [Test] public void TestAddTypesToLister() { ExplicitTypeLister testLister = new ExplicitTypeLister(); Assert.That( testLister.GetTypes(), Has.No.Member(typeof(TestAttribute)) ); testLister.Types.Add(typeof(TestAttribute)); Assert.That( testLister.GetTypes(), Has.Member(typeof(TestAttribute)) ); } } } // namespace Nuclex.Support.Services #endif // ENABLE_SERVICEMANAGER #endif // UNITTEST