public void ApplicationContextScopeConstructorTest1()
 {
     var target = new ApplicationContextScope();
 }
 public void DisposeTest()
 {
     var target = new ApplicationContextScope();
     target.Dispose();
 }
 public void ApplicationContextScopeConstructorTest()
 {
     var target =
         new ApplicationContextScope(new ApplicationContext {Items = new ThreadSafeDictionary()});
     Assert.IsNotNull(target);
 }