Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1023B

  1. #from cli import *
  2. #from cli_test import *
  3. from memory_test import *
  4. #from shell import *
  5. #import sys
  6. print(memory_test_deselectMismatchedItems())
  7. print(memory_test_deselectMismatchedItems_itemTwice())
  8. print(memory_test_detectVictory())
  9. print(memory_test_generateConstPlayfield())
  10. print(memory_test_hideMatchingItems())
  11. print(memory_test_selectItem_1x())
  12. print(memory_test_selectItem_2x())
  13. print(memory_test_selectItem_3x())
  14. #print(cli_test_greetUser())
  15. #print(cli_test_selectItem())
  16. #print(cli_test_shouldPromptSelection())
  17. ##print(cli_test_shouldReportIvalidItemSelection_outOfBoundsMin())
  18. #print(cli_test_showHelp_h())
  19. #print(cli_test_showHelp_help())
  20. #
  21. #c = shell_createContext()
  22. #c.cCLI = cli_createContext()
  23. #c.cCLI.cMemory = memory_createContext()
  24. #c.cCLI.cMemory.playfieldSize = 2
  25. #c.cCLI.cMemory = memory_generateConstPlayfield(c.cCLI.cMemory)
  26. #
  27. #c = shell_launch(c)
  28. #print(c.output)
  29. #
  30. #for line in sys.stdin:
  31. # c.input = line.rstrip()
  32. # c = shell_processInput(c)
  33. # if c.exit:
  34. # break
  35. # print(c.output)