コード例 #1
0
ファイル: AutoContextTests.cs プロジェクト: forki/Argolis
        public void When_created_should_not_include_reserved_keywords()
        {
            // given
            var context = new AutoContext <Issue>(new Uri("http://example.api/o#Issue"));

            // then
            context.Should().NotContainKey(JsonLdKeywords.Id);
            context.Should().NotContainKey(JsonLdKeywords.Type);
            context.Should().NotContainKey(JsonLdKeywords.Context);
        }