AWSSDK_DotNet35.UnitTests.TestTools.WAFRegionalMethodCustomizationsTests.EnsureSimpleMethodExists C# (CSharp) Method

EnsureSimpleMethodExists() public method

public EnsureSimpleMethodExists ( Type type, string methodName, Type simpleParams ) : void
type System.Type
methodName string
simpleParams System.Type
return void
        void EnsureSimpleMethodExists(Type type, string methodName, Type[] simpleParams)
        {
            Assert.IsNotNull(type.GetMethod(methodName, simpleParams), "Failed to find simple method " + methodName);
        }
    }