Exemplo n.º 1
0
        public void ValidateApexMethodTest()
        {
            // ConnectApi.Zones.setTestSearchInZone(String communityId, String zoneId, String q, ConnectApi.ZoneSearchResultType filter, String pageParam, Integer pageSize, ConnectApi.ZoneSearchPage result)
            var methodDto = new ApexMethodDto
            {
                NameSpace     = "ConnectApi",
                ClassName     = "Zones",
                MethodName    = "setTestSearchInZone",
                ParameterList = "String:String:String:ConnectApi.ZoneSearchResultType:String:Integer:ConnectApi.ZoneSearchPage"
            };

            methodDto = db.ValidateApexMethod(methodDto);
            Assert.NotNull(methodDto);
        }
Exemplo n.º 2
0
 public ApexMethodDto ValidateApexMethod(ApexMethodDto apexMethodMethod)
 {
     return(new ApexMethodDto());
 }