Dev2.Runtime.ESB.Management.Services.AddFolderService.HandlesType C# (CSharp) 메소드

HandlesType() 공개 메소드

public HandlesType ( ) : string
리턴 string
        public string HandlesType()
        {
            return "AddFolderService";
        }

Usage Example

예제 #1
0
        public void CreateFolder_HandlesType_ExpectName()
        {
            //------------Setup for test--------------------------
            var addFolder = new AddFolderService();


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

            //------------Assert Results-------------------------
            Assert.AreEqual("AddFolderService", addFolder.HandlesType());
        }