/V4/PrismLibrary/Desktop/Prism.UnityExtensions.Tests/UnityBootstrapperNullContainerFixture.cs
# · C# · 53 lines · 33 code · 4 blank · 16 comment · 0 complexity · 36b682fd16c11f6048a70ae906f8b020 MD5 · raw file
- //===================================================================================
- // Microsoft patterns & practices
- // Composite Application Guidance for Windows Presentation Foundation and Silverlight
- //===================================================================================
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
- // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
- // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
- // FITNESS FOR A PARTICULAR PURPOSE.
- //===================================================================================
- // The example companies, organizations, products, domain names,
- // e-mail addresses, logos, people, places, and events depicted
- // herein are fictitious. No association with any real company,
- // organization, product, domain name, email address, logo, person,
- // places, or events is intended or should be inferred.
- //===================================================================================
- using System;
- using System.Windows;
- using Microsoft.Practices.Prism.UnityExtensions;
- using Microsoft.Practices.Unity;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
-
- namespace Microsoft.Practices.Prism.UnityExtensions.Tests
- {
- [TestClass]
- public class UnityBootstrapperNullContainerFixture : BootstrapperFixtureBase
- {
- [TestMethod]
- public void RunThrowsWhenNullContainerCreated()
- {
- var bootstrapper = new NullContainerBootstrapper();
-
- AssertExceptionThrownOnRun(bootstrapper, typeof(InvalidOperationException), "IUnityContainer");
- }
-
- private class NullContainerBootstrapper : UnityBootstrapper
- {
- protected override IUnityContainer CreateContainer()
- {
- return null;
- }
- protected override DependencyObject CreateShell()
- {
- throw new NotImplementedException();
- }
-
- protected override void InitializeShell()
- {
- throw new NotImplementedException();
- }
- }
- }
- }