Exemple #1
0
        public void RetrievingItems_Always_Succeeds()
        {
            // Arrange
            var proxy = new ContainerDebugViewProxy(new Container());

            // Act
            var items = proxy.Items;
        }
Exemple #2
0
        public void Options_Always_ReturnsTheOptionsFromTheContainer()
        {
            // Arrange
            var container = new Container();

            var proxy = new ContainerDebugViewProxy(container);

            // Act
            var options = proxy.Options;

            // Assert
            Assert.AreSame(container.Options, options);
        }