Dev2.Runtime.ESB.Management.Services.AddFolderService.HandlesType C# (CSharp) Méthode

HandlesType() public méthode

public HandlesType ( ) : string
Résultat string
        public string HandlesType()
        {
            return "AddFolderService";
        }

Usage Example

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


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

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