Ejemplo n.º 1
0
def test_joining():
    t = StoppableThread()
    t.start()
    t.join()
    assert t.should_stop() == True
Ejemplo n.º 2
0
def test_joining():
    t = StoppableThread()
    t.start()
    t.join()
    assert t.should_stop() == True
Ejemplo n.º 3
0
def test_thread_stopping():
    t = StoppableThread()
    t.start()
    t.stop()
    assert t.should_stop() is True
    t.join()
Ejemplo n.º 4
0
def test_thread_stopping():
    t = StoppableThread()
    t.start()
    t.stop()
    assert t.should_stop() is True
    t.join()