1################################################################################################### 2# This file contains test case composed of the following tags: 3# * # (coments): Lines starting with this character would be ignored. 4# * arguments: is set of words separated by spaces that can later be parsed 5# * board: represent a workspace, the first line is the dimensions of the board width x height (wxh) 6# There are different characters on the board that represent different things: 7# * x: The x character represents spaces that would be ignored, for example it can be used in 8# the first row if we don't know how wide the smartspace is. 9# * i: Represents an icon on the workspace, none in particular just an icon 10# * [a-z]: Represents a widget and it can be any number or character 11# except any other already in use. The whole continuos are of the same character is the 12# area of the widget. 13# * [A-Z]: Represents a folder and number of icons in the folder is represented by the order of 14# letter in the alphabet, A=2, B=3, C=4 ... etc. 15# Test are parsed by CellLayoutTestCaseReader.java and boards are parsed by CellLayoutBoard.java 16################################################################################################### 17#Test 5x5 18board: 5x5 19xxxxx 20bbbm- 21--ccc 22--ddd 23----- 24arguments: 2 1 25board: 5x5 26xxxxx 27--m-- 28bbb-- 29--ccc 30--ddd 31#6x5 Test 32board: 6x5 33xxxxxx 34bbbbm- 35--aaa- 36--ddd- 37------ 38arguments: 2 1 39board: 6x5 40xxxxxx 41--m--- 42bbbb-- 43--aaa- 44--ddd-