Beispiel #1
0
        public void CanCreateEntryWithTags()
        {
            DateTime now = new DateTime(2013, 4, 16, 12, 10, 0);
            XElement entryXml = new AtomPoster(new Uri("http://example.com/")).CreateEntryXml(
                null, null, "Title of document", now, "<p>Example document.</p>", new[] { "foo", "bar" });

            Assert.NotNull(entryXml);
        }
Beispiel #2
0
        public void CanCreateEntry()
        {
            DateTime now = DateTime.Now;
            DateTime utc = DateTime.UtcNow;

            XElement entryXml = new AtomPoster(new Uri("http://example.com/")).CreateEntryXml(
                null, null, "Title of document", now, "<p>Example document.</p>", null);

            Assert.NotNull(entryXml);
        }