Research portable Memory game | Исследовать портируемую игру Память
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #from cli import *
- #from cli_test import *
- from memory_test import *
- #from shell import *
- #import sys
-
- print(memory_test_shouldDeselectMismatchedItems())
- print(memory_test_shouldDeselectMismatchedItems_itemTwice())
- print(memory_test_shouldDetectVictory())
- print(memory_test_shouldGenerateConstPlayfield())
- print(memory_test_shouldHideMatchingItems())
- print(memory_test_shouldSelectItem_1x())
- print(memory_test_shouldSelectItem_2x())
- print(memory_test_shouldSelectItem_3x())
-
- #print(cli_test_greetUser())
- #print(cli_test_selectItem())
- #print(cli_test_shouldPromptSelection())
- ##print(cli_test_shouldReportIvalidItemSelection_outOfBoundsMin())
- #print(cli_test_showHelp_h())
- #print(cli_test_showHelp_help())
- #
- #c = shell_createContext()
- #c.cCLI = cli_createContext()
- #c.cCLI.cMemory = memory_createContext()
- #c.cCLI.cMemory.playfieldSize = 2
- #c.cCLI.cMemory = memory_generateConstPlayfield(c.cCLI.cMemory)
- #
- #c = shell_launch(c)
- #print(c.output)
- #
- #for line in sys.stdin:
- # c.input = line.rstrip()
- # c = shell_processInput(c)
- # if c.exit:
- # break
- # print(c.output)
|