ALE.Tests.EventLoop_Tests.EventLoop_IsRunning_Property C# (CSharp) Method

EventLoop_IsRunning_Property() private method

private EventLoop_IsRunning_Property ( ) : void
return void
        public void EventLoop_IsRunning_Property()
        {
            EventLoop.Start();
            Assert.IsTrue(EventLoop.IsRunning);
            EventLoop.Stop();
            Assert.IsFalse(EventLoop.IsRunning);
        }