示例#1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void shouldHandleBooleans()
        public virtual void ShouldHandleBooleans()
        {
            TRUE.writeTo(_converter);
            assertThat(_converter.value(), equalTo(true));
            FALSE.writeTo(_converter);
            assertThat(_converter.value(), equalTo(false));
        }