Exemple #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test void shouldBuildDocumentRepresentingBoolProperty()
        internal virtual void ShouldBuildDocumentRepresentingBoolProperty()
        {
            // given
            Document document = documentRepresentingProperties(( long )123, true);

            // then
            assertEquals("123", document.get(NODE_ID_KEY));
            assertEquals("true", document.get(Bool.key(0)));
        }