public void Assert_WhenArgumentIsMethodFromClass_ThrowsApplicationException()
        {
            var classSut = new ValuesSut();

            Unit.Assert.Throws <ApplicationException>(() => Assert(() => classSut.Method()));
            Unit.Assert.Throws <ApplicationException>(() => Assert(() => ValuesSut.StaticMethod()));
        }