Exemplo n.º 1
0
        public void BuildContainerMustNotThrow()
        {
            var runAction = new Action(() => _bootstrapper.Run());

            runAction.ShouldNotThrow();

            var stopAction = new Action(() => _bootstrapper.Stop());

            stopAction.ShouldNotThrow();
        }
 public void ShutdownMosaic()
 {
     _bootstrapper.Stop();
 }