Esempio n. 1
0
        public void TestDeleteActivityProfile()
        {
            var doc = new ActivityProfileDocument();

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

            LRSResponse lrsRes = lrs.DeleteActivityProfile(doc);

            Assert.IsTrue(lrsRes.success);
        }
        public async Task TestDeleteActivityProfile()
        {
            var doc = new ActivityProfileDocument();

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

            LRSResponse lrsRes = await lrs.DeleteActivityProfile(doc);

            Assert.True(lrsRes.success);
        }
Esempio n. 3
0
        public void TestDeleteActivityProfile()
        {
            var doc = new ActivityProfileDocument
            {
                Activity = Support.Activity,
                ID       = "test"
            };

            var lrsRes = _lrs.DeleteActivityProfile(doc);

            Assert.IsTrue(lrsRes.Success);
        }