Created
June 8, 2023 14:14
-
-
Save huogerac/07eb9b3a05d66915217fa519ecc898a2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
14 <-- \o/ | |
7 | |
T | |
""" | |
e1_posicoes = ['A', '', '', ''] | |
def obter_posicao_atual(): | |
# e1_posicoes = ['', '', 'A', ''] | |
index = 0 | |
for item in e1_posicoes: | |
if item != '': | |
index += 1 | |
return index | |
def chamar(andar_chamado: int): | |
sentido = '+' | |
step = 1 | |
# if sentido == "-": | |
# numero_sentido = -1 | |
index = obter_posicao_atual() | |
if index < andar_chamado: | |
sentido = '-' | |
step = -1 | |
return [andar for andar in range(index+1, andar_chamado+1, step)] | |
def teste_subir_elevador(): | |
""" | |
elevador está 0 | |
chamador está no 3 | |
""" | |
global e1_posicoes | |
e1_posicoes = ['A', '', '', ''] | |
resposta = chamar(3) | |
assert resposta == [1, 2, 3] | |
# teste_if_baby_needs_cadeirinha | |
def teste_descer_elevador(): | |
""" | |
elevador está 2 | |
chamador está no 1 | |
""" | |
global e1_posicoes | |
e1_posicoes = ['', '', 'A', ''] | |
resposta = chamar(1) | |
assert resposta == [1] | |
def teste_descer_elevador_3_andares(): | |
""" | |
elevador está 3 | |
chamador está no 0 | |
""" | |
global e1_posicoes | |
e1_posicoes = ['', '', '', 'A'] | |
resposta = chamar(0) | |
assert resposta == [2, 1, 0] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ideia de testes para 1 elevador: