*
* @return
*/
private static TRichStruct getTRichStruct() {
int[][] intArr = new int[][] { {1, 2}, {3, 4}};
TInnerStruct innerStruct = new TInnerStruct(intArr, "Test", TColor.green);
String[] strSeq = {"i", "Test"};
return new TRichStruct(innerStruct, strSeq, 1);
}