Dev2.Runtime.ESB.Management.Services.FetchExplorerItems.HandlesType C# (CSharp) Method

HandlesType() public method

public HandlesType ( ) : string
return string
        public string HandlesType()
        {
            return "FetchExplorerItemsService";
        }

Usage Example

        public void FetchExplorerItems_HandlesType_ExpectName()
        {
            //------------Setup for test--------------------------
            var fetchExplorerItems = new FetchExplorerItems();


            //------------Execute Test---------------------------

            //------------Assert Results-------------------------
            Assert.AreEqual("FetchExplorerItemsService", fetchExplorerItems.HandlesType());
        }