ChatterServiceTest.ChatterSqlProceduresTest.TestCreateActivityWithMissingBody C# (CSharp) Method

TestCreateActivityWithMissingBody() private method

private TestCreateActivityWithMissingBody ( ) : void
return void
        public void TestCreateActivityWithMissingBody()
        {
            string xml =
                "<activity xmlns=\"http://ns.opensocial.org/2008/opensocial\"><postedTime>1310597396000</postedTime><title>Edited their narrative</title></activity>";
            var xmlReader = XmlTextReader.Create(new System.IO.StringReader(xml));

            SqlXml messageBlob = new SqlXml(xmlReader);

            //ChatterSqlProcedures.CreateActivity(_url, _username, _password, _token, _employeeId, messageBlob, _pmid, _title, _body);
        }