public void GetMethodInfoTests()
        {
            var        info     = _testStubs.GetType().GetMethod("Button_Click_External");
            MethodInfo testInfo = _testStubs.GetMethodInfo("Button_Click_External");

            Assert.AreEqual(info, testInfo, "GetMethodInfo - Test failed to get a proper info.");
        }
        public void GetMethodInfoTests()
        {
            var        info     = _testStubs.GetType().GetMethod("Button_Click_External");
            MethodInfo testInfo = _testStubs.GetMethodInfo("Button_Click_External");

            Assert.Equal(info, testInfo);
        }