PageRenderTime 38ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/V4/PrismLibrary/Desktop/Prism.Tests/Regions/SingleActiveRegionFixture.cs

#
C# | 43 lines | 23 code | 4 blank | 16 comment | 0 complexity | d4c519e720bfaecb80e5059b7094c9df MD5 | raw file
  1. //===================================================================================
  2. // Microsoft patterns & practices
  3. // Composite Application Guidance for Windows Presentation Foundation and Silverlight
  4. //===================================================================================
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
  7. // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
  8. // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  9. // FITNESS FOR A PARTICULAR PURPOSE.
  10. //===================================================================================
  11. // The example companies, organizations, products, domain names,
  12. // e-mail addresses, logos, people, places, and events depicted
  13. // herein are fictitious. No association with any real company,
  14. // organization, product, domain name, email address, logo, person,
  15. // places, or events is intended or should be inferred.
  16. //===================================================================================
  17. using Microsoft.Practices.Prism.Regions;
  18. using Microsoft.VisualStudio.TestTools.UnitTesting;
  19. namespace Microsoft.Practices.Prism.Tests.Regions
  20. {
  21. [TestClass]
  22. public class SingleActiveRegionFixture
  23. {
  24. [TestMethod]
  25. public void ActivatingNewViewDeactivatesCurrent()
  26. {
  27. IRegion region = new SingleActiveRegion();
  28. var view = new object();
  29. region.Add(view);
  30. region.Activate(view);
  31. Assert.IsTrue(region.ActiveViews.Contains(view));
  32. var view2 = new object();
  33. region.Add(view2);
  34. region.Activate(view2);
  35. Assert.IsFalse(region.ActiveViews.Contains(view));
  36. Assert.IsTrue(region.ActiveViews.Contains(view2));
  37. }
  38. }
  39. }