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.

gui_aux_test.py 290B

3 months ago
123456789101112131415
  1. from gui_aux import *
  2. def test_gui_aux_cellPositions(
  3. ) -> str:
  4. items2x2 = gui_aux_cellPositions(2)
  5. items4x4 = gui_aux_cellPositions(4)
  6. if (
  7. len(items2x2) == 4 and
  8. len(items4x4) == 16
  9. ):
  10. return "OK: gui_aux_cellPositions"
  11. #}
  12. return "ERR: gui_aux_cellPositions"
  13. #}