//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void interruptShouldInterruptStateMachine()
        public virtual void InterruptShouldInterruptStateMachine()
        {
            BoltConnection connection = NewConnection();

            connection.Interrupt();

            verify(_stateMachine).interrupt();
        }