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 20cd-m- 21cgaaa 22ctaaa 23ctaaa 24arguments: 1 2 25board: 5x5 26xxxxx 27cde-- 28cgaaa 29ctaaa 30ctaaa 31# Test 6x5 32board: 6x5 33xxxxxx 34cd-m-- 35cgaaaa 36ctaaaa 37ctaaaa 38arguments: 1 2 39board: 6x5 40xxxxxx 41cdg--- 42cmaaaa 43ctaaaa 44ctaaaa