Created
September 24, 2019 13:33
-
-
Save mauricioaniche/671fb553a81df9e6b29434b7e6e53491 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
import builtins | |
input_values = [] | |
print_values = [] | |
def mock_input(s): | |
print_values.append(s) | |
return input_values.pop(0) | |
def mock_input_output_start(): | |
global input_values, print_values | |
input_values = [] | |
print_values = [] | |
builtins.input = mock_input | |
builtins.print = lambda s: print_values.append(s) | |
def get_display_output(): | |
global print_values | |
return print_values | |
def set_keyboard_input(mocked_inputs): | |
global input_values | |
mock_input_output_start() | |
input_values = mocked_inputs | |
Thanks for sharing!
"tud_test_base" What does mean "tud"?
I made a fork. Do you like?
@54ny7 TUD stands for Delft University of Technology; or in dutch Technische Universiteit Delft
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for Sharing very useful