Bug 209 - Check Run do not support Joker in between
Summary: Check Run do not support Joker in between
Status: RESOLVED FIXED
Alias: None
Product: Gp10
Classification: Unclassified
Component: java (show other bugs)
Version: unspecified
Hardware: PC Mac OS
: --- critical
Assignee: whng28-c
URL:
Depends on:
Blocks:
 
Reported: 2017-11-26 01:53 HKT by whng28-c
Modified: 2017-11-26 01:54 HKT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description whng28-c 2017-11-26 01:53:34 HKT
1. Create a TileSet class with 3 tiles,
Tile t1 = new Tile (1, Color.Red);
Tile t2 = new Tile (Color.Joker);
Tile t3 = new Tile (3, Color.Red);
2. Use the method of checkRun() in TileSet class to check if it is valid or not

Expected:
- valid, return true

Actual:
- invalid, return false
Comment 1 whng28-c 2017-11-26 01:54:03 HKT
Joey