public void ThrowsOnInNamespaceNull()
        {
            var tested = new TypeFilter(typeof(SimpleService));

            Assert.Throws <ArgumentNullException>("namespace", () => tested.InNamespace(null));
        }