public async Task TestDeleteState()
        {
            var doc = new StateDocument();

            doc.activity = Support.activity;
            doc.agent    = Support.agent;
            doc.id       = "test";

            LRSResponse lrsRes = await lrs.DeleteState(doc);

            Assert.True(lrsRes.success);
        }
Example #2
0
        public void TestDeleteState()
        {
            var doc = new StateDocument
            {
                Activity = Support.Activity,
                Agent    = Support.Agent,
                ID       = "test"
            };

            var lrsRes = _lrs.DeleteState(doc);

            Assert.IsTrue(lrsRes.Success);
        }