Beispiel #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void slaveStatementLocks()
        public virtual void SlaveStatementLocks()
        {
            StatementLocksFactorySwitcher switcher   = LocksSwitcher;
            StatementLocksFactory         slaveLocks = switcher.SlaveImpl;

            assertThat(slaveLocks, instanceOf(typeof(SlaveStatementLocksFactory)));
        }
Beispiel #2
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void masterStatementLocks()
        public virtual void MasterStatementLocks()
        {
            StatementLocksFactorySwitcher switcher    = LocksSwitcher;
            StatementLocksFactory         masterLocks = switcher.MasterImpl;

            assertSame(masterLocks, _configuredLockFactory);
        }