Exemplo n.º 1
0
        public void OnCompleted_Always_DoesNothing(bool ignore, bool manage)
        {
            var uut = new ManagedBlockSettingsProvider();

            var settings = new ManagedBlockSettings()
            {
                Ignore = ignore,
                Manage = manage
            };

            uut.Settings = settings;

            uut.OnCompleted();

            uut.Settings.ShouldBe(settings);
        }