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

コード例 #1
0
ファイル: DeleteItemsTest.cs プロジェクト: Robin--/Warewolf
        public void DeleteItem_HandlesType_ExpectName()
        {
            //------------Setup for test--------------------------
            var deleteItem = new DeleteItemService();


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

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