Exemple #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void shouldAutomaticallyConfigure()
        public virtual void shouldAutomaticallyConfigure()
        {
            // given

            engineConfiguration.HistoryCleanupStrategy = null;

            // when
            engineConfiguration.initHistoryCleanup();

            // then
            assertThat(engineConfiguration.HistoryCleanupStrategy, @is(HISTORY_CLEANUP_STRATEGY_REMOVAL_TIME_BASED));
        }