예제 #1
0
        public void GetFlowsTest()
        {
            // TODO: add unit test for the method 'GetFlows'
            string        type              = null; // TODO: replace null with proper value
            int?          pageNumber        = null; // TODO: replace null with proper value
            int?          pageSize          = null; // TODO: replace null with proper value
            string        sortBy            = null; // TODO: replace null with proper value
            string        sortOrder         = null; // TODO: replace null with proper value
            List <string> id                = null; // TODO: replace null with proper value
            string        name              = null; // TODO: replace null with proper value
            string        description       = null; // TODO: replace null with proper value
            string        nameOrDescription = null; // TODO: replace null with proper value
            string        publishVersionId  = null; // TODO: replace null with proper value
            string        editableBy        = null; // TODO: replace null with proper value
            string        lockedBy          = null; // TODO: replace null with proper value
            bool?         deleted           = null; // TODO: replace null with proper value

            var response = instance.GetFlows(type, pageNumber, pageSize, sortBy, sortOrder, id, name, description, nameOrDescription, publishVersionId, editableBy, lockedBy, deleted);

            Assert.IsInstanceOf <FlowEntityListing> (response, "response is FlowEntityListing");
        }