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

HandlesType() public method

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

Usage Example

Ejemplo n.º 1
0
        public void DeleteItem_HandlesType_ExpectName()
        {
            //------------Setup for test--------------------------
            var deleteItem = new DeleteItemService();


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

            //------------Assert Results-------------------------
            Assert.AreEqual("DeleteItemService", deleteItem.HandlesType());
        }