コード例 #1
0
        public void Remove()
        {
            var filter = new CommandFilter();

            Assert.That(filter.Remove <MockCommand>(), Is.False);

            filter.Add <MockCommand>();

            Assert.That(filter.Remove <MockCommand>(), Is.True);
        }