Ejemplo n.º 1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void testVisitIndexDeleteCommand() throws Exception
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
        public virtual void TestVisitIndexDeleteCommand()
        {
            IndexCommand.DeleteCommand cmd = mock(typeof(IndexCommand.DeleteCommand));
            when(cmd.Handle(any(typeof(CommandVisitor)))).thenCallRealMethod();

            // WHEN
            bool result = _facade.visitIndexDeleteCommand(cmd);

            // THEN
            InOrder inOrder = inOrder(_txApplier1, _txApplier2, _txApplier3);

            inOrder.verify(_txApplier1).visitIndexDeleteCommand(cmd);
            inOrder.verify(_txApplier2).visitIndexDeleteCommand(cmd);
            inOrder.verify(_txApplier3).visitIndexDeleteCommand(cmd);

            inOrder.verifyNoMoreInteractions();

            assertFalse(result);
        }
Ejemplo n.º 2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public boolean visitIndexDeleteCommand(org.neo4j.kernel.impl.index.IndexCommand.DeleteCommand command) throws java.io.IOException
        public override bool VisitIndexDeleteCommand(IndexCommand.DeleteCommand command)
        {
            return(Visit(command));
        }