コード例 #1
0
        public void GetSharesTest()
        {
            // TODO: add unit test for the method 'GetShares'
            string entityId   = null; // TODO: replace null with proper value
            string expand     = null; // TODO: replace null with proper value
            int?   pageSize   = null; // TODO: replace null with proper value
            int?   pageNumber = null; // TODO: replace null with proper value
            var    response   = instance.GetShares(entityId, expand, pageSize, pageNumber);

            Assert.IsInstanceOf <ShareEntityListing> (response, "response is ShareEntityListing");
        }