ALMRestClient.ALMClient.GetDefects C# (CSharp) Method

GetDefects() public method

Get the list of defects
public GetDefects ( ) : List
return List
        public List<ALMItem> GetDefects()
        {
            List<ALMItem> items = new List<ALMItem>();

            ReadDefects(items);

            return items;
        }

Usage Example

コード例 #1
0
        public void GetDefectsTest()
        {
            Assert.IsTrue(wrapper.Login());

            List <ALMRestClient.ALMItem> items = wrapper.GetDefects();

            Assert.IsNotNull(items);
        }