Tools__NavigatorCanvas.st
author Claus Gittinger <cg@exept.de>
Thu, 05 May 2016 20:48:18 +0200
changeset 16450 6cb2bfca401e
parent 15441 db99d6ea85ad
child 15566 184cea584be5
child 16532 2f9e7091b4b5
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: Tools::SearchDialog added string-in-literal search option. added tooltips. added:6 methods comment/format in:13 methods changed:9 methods
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
"
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
 COPYRIGHT (c) 2000 by eXept Software AG
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
	      All Rights Reserved
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    10
 hereby transferred.
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
"
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
"{ NameSpace: Tools }"
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    15
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
NavigatorModel subclass:#NavigatorCanvas
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
	instanceVariableNames:''
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
	classVariableNames:''
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
	poolDictionaries:''
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
	category:'Interface-Browsers-New'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    23
!NavigatorCanvas class methodsFor:'documentation'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    24
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    25
copyright
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    26
"
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    27
 COPYRIGHT (c) 2000 by eXept Software AG
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    28
	      All Rights Reserved
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    29
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    35
 hereby transferred.
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    36
"
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    37
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    38
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    39
!NavigatorCanvas class methodsFor:'interface specs'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    40
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    41
categoryAndClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    42
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    43
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    44
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    46
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    47
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    48
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    49
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#categoryAndClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    50
     Tools::NavigatorCanvas new openInterface:#categoryAndClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    51
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    52
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    53
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    54
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    55
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    56
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    57
       name: categoryAndClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    58
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    59
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    60
         label: 'Full Class Browser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    61
         name: 'Full Class Browser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    62
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    63
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    64
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    65
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    66
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    67
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    68
          (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    69
             name: 'Organizer'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    70
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    71
             majorKey: OrganizerCanvas
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    72
             minorKey: windowSpecWithoutMetaToggles
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    73
             subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    74
            (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    75
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    76
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    77
                 subAspect: classCategoryDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    78
                 callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    79
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    80
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    81
                 subAspect: classCategoryListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    82
                 aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    83
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    84
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    85
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    86
                 subAspect: classDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    87
                 callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    88
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    89
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    90
                 subAspect: classHierarchyListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    91
                 aspect: hierarchyPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    92
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    93
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    94
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    95
                 subAspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    96
                 aspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    97
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    98
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    99
                 subAspect: classListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   100
                 aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   101
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   102
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   103
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   104
                 subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   105
                 aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   106
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   107
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   108
                 subAspect: hidePrivateClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   109
                 aspect: hidePrivateClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   110
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   111
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   112
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   113
                 subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   114
                 aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   115
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   116
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   117
                 subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   118
                 aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   119
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   120
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   121
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   122
                 subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   123
                 aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   124
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   125
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   126
                 subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   127
                 aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   128
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   129
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   130
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   131
                 subAspect: metaToggleLabelHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   132
                 aspect: metaToggleLabelHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   133
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   134
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   135
                 subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   136
                 aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   137
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   138
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   139
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   140
                 subAspect: nameSpaceDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   141
                 callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   142
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   143
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   144
                 subAspect: nameSpaceListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   145
                 aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   146
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   147
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   148
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   149
                 subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   150
                 aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   151
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   152
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   153
                 subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   154
                 aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   155
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   156
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   157
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   158
                 subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   159
                 aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   160
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   161
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   162
                 subAspect: projectDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   163
                 callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   164
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   165
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   166
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   167
                 subAspect: projectListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   168
                 aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   169
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   170
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   171
                 subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   172
                 aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   173
                 callBack: categorySelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   174
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   175
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   176
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   177
                 subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   178
                 aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   179
                 callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   180
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   181
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   182
                 subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   183
                 aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   184
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   185
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   186
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   187
                 subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   188
                 aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   189
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   190
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   191
                 subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   192
                 aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   193
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   194
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   195
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   196
                 subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   197
                 aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   198
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   199
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   200
                 subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   201
                 aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   202
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   203
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   204
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   205
                 subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   206
                 aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   207
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   208
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   209
                 subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   210
                 aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   211
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   212
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   213
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   214
                 subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   215
                 aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   216
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   217
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   218
                 subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   219
                 aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   220
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   221
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   222
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   223
                 subAspect: variableDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   224
                 callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   225
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   226
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   227
             createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   228
             createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   229
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   230
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   231
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   232
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   233
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   234
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   235
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   236
categoryAndSingleClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   237
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   238
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   239
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   240
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   241
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   242
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   243
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   244
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#categoryAndSingleClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   245
     Tools::NavigatorCanvas new openInterface:#categoryAndSingleClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   246
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   247
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   248
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   249
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   250
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   251
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   252
       name: categoryAndSingleClassOnlySpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   253
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   254
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   255
         label: 'Full Class Browser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   256
         name: 'Full Class Browser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   257
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   258
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   259
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   260
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   261
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   262
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   263
          (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   264
             name: 'Organizer'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   265
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   266
             majorKey: OrganizerCanvas
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   267
             minorKey: windowSpecWithoutMetaToggles
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   268
             subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   269
            (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   270
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   271
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   272
                 subAspect: classCategoryDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   273
                 callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   274
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   275
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   276
                 subAspect: classCategoryListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   277
                 aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   278
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   279
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   280
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   281
                 subAspect: classDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   282
                 callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   283
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   284
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   285
                 subAspect: classHierarchyListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   286
                 aspect: hierarchyPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   287
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   288
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   289
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   290
                 subAspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   291
                 aspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   292
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   293
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   294
                 subAspect: classListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   295
                 aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   296
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   297
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   298
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   299
                 subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   300
                 aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   301
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   302
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   303
                 subAspect: hidePrivateClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   304
                 aspect: hidePrivateClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   305
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   306
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   307
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   308
                 subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   309
                 aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   310
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   311
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   312
                 subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   313
                 aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   314
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   315
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   316
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   317
                 subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   318
                 aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   319
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   320
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   321
                 subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   322
                 aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   323
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   324
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   325
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   326
                 subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   327
                 aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   328
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   329
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   330
                 subAspect: nameSpaceDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   331
                 callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   332
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   333
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   334
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   335
                 subAspect: nameSpaceListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   336
                 aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   337
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   338
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   339
                 subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   340
                 aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   341
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   342
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   343
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   344
                 subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   345
                 aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   346
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   347
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   348
                 subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   349
                 aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   350
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   351
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   352
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   353
                 subAspect: projectDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   354
                 callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   355
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   356
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   357
                 subAspect: projectListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   358
                 aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   359
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   360
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   361
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   362
                 subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   363
                 aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   364
                 callBack: categorySelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   365
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   366
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   367
                 subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   368
                 aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   369
                 callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   370
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   371
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   372
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   373
                 subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   374
                 aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   375
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   376
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   377
                 subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   378
                 aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   379
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   380
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   381
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   382
                 subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   383
                 aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   384
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   385
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   386
                 subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   387
                 aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   388
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   389
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   390
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   391
                 subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   392
                 aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   393
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   394
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   395
                 subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   396
                 aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   397
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   398
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   399
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   400
                 subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   401
                 aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   402
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   403
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   404
                 subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   405
                 aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   406
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   407
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   408
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   409
                 subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   410
                 aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   411
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   412
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   413
                 subAspect: variableDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   414
                 callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   415
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   416
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   417
             createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   418
             createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   419
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   420
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   421
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   422
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   423
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   424
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   425
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   426
fullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   427
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   428
    ^UserPreferences current showEmbeddedTestRunnerInBrowser
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   429
        ifTrue: [self fullBrowserSpecWithEmbeddedTestRunner]
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   430
        ifFalse:[self fullBrowserSpecPlain]
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   431
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   432
    "Modified: / 11-03-2010 / 10:15:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   433
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   434
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   435
fullBrowserSpecPlain
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   436
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   437
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   438
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   439
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   440
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   441
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   442
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   443
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#fullBrowserSpecPlain
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   444
     Tools::NavigatorCanvas new openInterface:#fullBrowserSpecPlain
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   445
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   446
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   447
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   448
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   449
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   450
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   451
       name: fullBrowserSpecPlain
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   452
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   453
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   454
         label: 'SystemBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   455
         name: 'SystemBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   456
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   457
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   458
         icon: defaultIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   459
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   460
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   461
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   462
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   463
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   464
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   465
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   466
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   467
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   468
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   469
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   470
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   471
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   472
                   name: 'Organizer'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   473
                   majorKey: OrganizerCanvas
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   474
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   475
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   476
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   477
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   478
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   479
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   480
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   481
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   482
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   483
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   484
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   485
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   486
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   487
                       subAspect: classCategoryListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   488
                       aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   489
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   490
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   491
                       subAspect: classCategoryDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   492
                       callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   493
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   494
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   495
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   496
                       subAspect: classDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   497
                       callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   498
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   499
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   500
                       subAspect: nameSpaceDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   501
                       callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   502
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   503
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   504
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   505
                       subAspect: projectDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   506
                       callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   507
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   508
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   509
                       subAspect: variableDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   510
                       callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   511
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   512
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   513
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   514
                       subAspect: classHierarchyListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   515
                       aspect: hierarchyPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   516
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   517
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   518
                       subAspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   519
                       aspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   520
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   521
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   522
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   523
                       subAspect: classListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   524
                       aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   525
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   526
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   527
                       subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   528
                       aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   529
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   530
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   531
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   532
                       subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   533
                       aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   534
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   535
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   536
                       subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   537
                       aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   538
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   539
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   540
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   541
                       subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   542
                       aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   543
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   544
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   545
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   546
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   547
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   548
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   549
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   550
                       subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   551
                       aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   552
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   553
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   554
                       subAspect: metaToggleLabelHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   555
                       aspect: metaToggleLabelHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   556
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   557
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   558
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   559
                       subAspect: nameSpaceListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   560
                       aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   561
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   562
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   563
                       subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   564
                       aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   565
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   566
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   567
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   568
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   569
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   570
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   571
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   572
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   573
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   574
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   575
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   576
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   577
                       subAspect: projectListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   578
                       aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   579
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   580
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   581
                       subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   582
                       aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   583
                       callBack: categorySelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   584
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   585
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   586
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   587
                       subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   588
                       aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   589
                       callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   590
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   591
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   592
                       subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   593
                       aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   594
                       callBack: nameSpaceSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   595
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   596
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   597
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   598
                       subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   599
                       aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   600
                       callBack: projectSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   601
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   602
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   603
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   604
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   605
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   606
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   607
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   608
                       subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   609
                       aspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   610
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   611
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   612
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   613
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   614
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   615
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   616
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   617
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   618
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   619
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   620
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   621
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   622
                       subAspect: variablesMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   623
                       aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   624
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   625
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   626
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   627
                       subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   628
                       aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   629
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   630
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   631
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   632
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   633
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   634
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   635
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   636
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   637
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   638
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   639
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   640
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   641
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   642
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   643
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   644
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   645
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   646
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   647
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   648
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   649
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   650
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   651
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   652
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   653
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   654
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   655
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   656
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   657
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   658
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   659
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   660
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   661
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   662
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   663
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   664
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   665
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   666
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   667
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   668
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   669
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   670
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   671
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   672
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   673
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   674
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   675
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   676
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   677
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   678
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   679
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   680
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   681
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   682
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   683
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   684
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   685
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   686
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   687
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   688
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   689
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   690
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   691
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   692
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   693
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   694
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   695
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   696
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   697
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   698
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   699
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   700
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   701
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   702
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   703
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   704
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   705
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   706
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   707
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   708
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   709
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   710
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   711
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   712
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   713
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   714
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   715
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   716
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   717
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   718
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   719
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   720
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   721
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   722
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   723
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   724
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   725
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   726
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   727
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   728
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   729
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   730
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   731
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   732
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   733
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   734
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   735
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   736
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   737
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   738
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   739
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   740
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   741
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   742
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   743
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   744
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   745
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   746
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   747
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   748
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   749
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   750
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   751
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   752
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   753
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   754
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   755
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   756
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   757
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   758
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   759
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   760
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   761
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   762
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   763
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   764
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   765
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   766
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   767
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   768
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   769
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   770
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   771
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   772
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   773
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   774
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   775
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   776
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   777
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   778
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   779
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   780
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   781
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   782
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   783
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   784
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   785
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   786
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   787
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   788
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   789
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   790
             handles: (Any 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   791
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   792
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   793
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   794
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   795
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   796
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   797
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   798
fullBrowserSpecWithEmbeddedTestRunner
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   799
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   800
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   801
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   802
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   803
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   804
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   805
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   806
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#fullBrowserSpecWithEmbeddedTestRunner
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   807
     Tools::NavigatorCanvas new openInterface:#fullBrowserSpecWithEmbeddedTestRunner
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   808
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   809
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   810
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   811
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   812
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   813
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   814
       name: fullBrowserSpecWithEmbeddedTestRunner
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   815
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   816
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   817
         label: 'SystemBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   818
         name: 'SystemBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   819
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   820
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   821
         icon: defaultIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   822
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   823
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   824
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   825
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   826
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   827
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   828
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   829
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   830
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   831
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   832
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   833
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   834
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   835
                   name: 'Organizer'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   836
                   majorKey: OrganizerCanvas
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   837
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   838
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   839
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   840
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   841
                       subAspect: classCategoryDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   842
                       callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   843
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   844
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   845
                       subAspect: classCategoryListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   846
                       aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   847
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   848
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   849
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   850
                       subAspect: classDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   851
                       callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   852
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   853
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   854
                       subAspect: classHierarchyListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   855
                       aspect: hierarchyPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   856
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   857
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   858
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   859
                       subAspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   860
                       aspect: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   861
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   862
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   863
                       subAspect: classListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   864
                       aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   865
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   866
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   867
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   868
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   869
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   870
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   871
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   872
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   873
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   874
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   875
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   876
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   877
                       subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   878
                       aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   879
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   880
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   881
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   882
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   883
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   884
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   885
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   886
                       subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   887
                       aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   888
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   889
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   890
                       subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   891
                       aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   892
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   893
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   894
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   895
                       subAspect: metaToggleLabelHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   896
                       aspect: metaToggleLabelHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   897
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   898
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   899
                       subAspect: nameSpaceDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   900
                       callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   901
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   902
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   903
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   904
                       subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   905
                       aspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   906
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   907
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   908
                       subAspect: nameSpaceListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   909
                       aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   910
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   911
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   912
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   913
                       subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   914
                       aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   915
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   916
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   917
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   918
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   919
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   920
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   921
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   922
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   923
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   924
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   925
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   926
                       subAspect: projectDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   927
                       callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   928
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   929
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   930
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   931
                       subAspect: projectListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   932
                       aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   933
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   934
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   935
                       subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   936
                       aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   937
                       callBack: categorySelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   938
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   939
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   940
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   941
                       subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   942
                       aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   943
                       callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   944
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   945
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   946
                       subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   947
                       aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   948
                       callBack: nameSpaceSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   949
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   950
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   951
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   952
                       subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   953
                       aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   954
                       callBack: projectSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   955
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   956
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   957
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   958
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   959
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   960
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   961
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   962
                       subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   963
                       aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   964
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   965
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   966
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   967
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   968
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   969
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   970
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   971
                       subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   972
                       aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   973
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   974
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   975
                       subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   976
                       aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   977
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   978
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   979
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   980
                       subAspect: variableDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   981
                       callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   982
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   983
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   984
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   985
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   986
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   987
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   988
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   989
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   990
                       subAspect: variablesMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   991
                       aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   992
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   993
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   994
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   995
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   996
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   997
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   998
                   name: 'CategoryAndMethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   999
                   hasHorizontalScrollBar: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1000
                   hasVerticalScrollBar: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1001
                   majorKey: #'Tools::NavigatorCanvas'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1002
                   minorKey: protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1003
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1004
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1005
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1006
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1007
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1008
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1009
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1010
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1011
                   createNewBuilder: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1012
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1013
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1014
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1015
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1016
             handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1017
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1018
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1019
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1020
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1021
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1022
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1023
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1024
multipleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1025
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1026
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1027
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1028
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1029
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1030
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1031
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1032
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1033
     Tools::NavigatorCanvas new openInterface:#multipleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1034
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1035
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1036
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1037
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1038
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1039
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1040
       name: multipleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1041
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1042
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1043
         label: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1044
         name: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1045
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1046
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1047
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1048
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1049
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1050
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1051
          (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1052
             name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1053
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1054
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1055
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1056
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1057
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1058
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1059
                (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1060
                   name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1061
                   barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1062
                   showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1063
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1064
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1065
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1066
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1067
                         name: 'CategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1068
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1069
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1070
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1071
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1072
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1073
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1074
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1075
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1076
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1077
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1078
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1079
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1080
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1081
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1082
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1083
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1084
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1085
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1086
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1087
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1088
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1089
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1090
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1091
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1092
                             aspect: categoryListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1093
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1094
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1095
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1096
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1097
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1098
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1099
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1100
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1101
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1102
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1103
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1104
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1105
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1106
                             callBack: categorySelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1107
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1108
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1109
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1110
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1111
                             aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1112
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1113
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1114
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1115
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1116
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1117
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1118
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1119
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1120
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1121
                      (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1122
                         name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1123
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1124
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1125
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1126
                            (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1127
                               name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1128
                               layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1129
                               showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1130
                               snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1131
                               handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1132
                               component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1133
                              (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1134
                                 collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1135
                                  (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1136
                                     name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1137
                                     majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1138
                                     subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1139
                                    (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1140
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1141
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1142
                                         subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1143
                                         callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1144
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1145
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1146
                                         subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1147
                                         aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1148
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1149
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1150
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1151
                                         subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1152
                                         aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1153
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1154
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1155
                                         subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1156
                                         aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1157
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1158
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1159
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1160
                                         subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1161
                                         aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1162
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1163
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1164
                                         subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1165
                                         aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1166
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1167
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1168
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1169
                                         subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1170
                                         aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1171
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1172
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1173
                                         subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1174
                                         aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1175
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1176
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1177
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1178
                                         subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1179
                                         aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1180
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1181
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1182
                                         subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1183
                                         aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1184
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1185
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1186
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1187
                                         subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1188
                                         aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1189
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1190
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1191
                                         subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1192
                                         aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1193
                                         callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1194
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1195
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1196
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1197
                                         subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1198
                                         aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1199
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1200
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1201
                                         subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1202
                                         aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1203
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1204
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1205
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1206
                                         subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1207
                                         aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1208
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1209
                                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1210
                                     createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1211
                                     createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1212
                                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1213
                                  (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1214
                                     name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1215
                                     majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1216
                                     subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1217
                                    (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1218
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1219
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1220
                                         subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1221
                                         aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1222
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1223
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1224
                                         subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1225
                                         callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1226
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1227
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1228
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1229
                                         subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1230
                                         aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1231
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1232
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1233
                                         subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1234
                                         aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1235
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1236
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1237
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1238
                                         subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1239
                                         aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1240
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1241
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1242
                                         subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1243
                                         aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1244
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1245
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1246
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1247
                                         subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1248
                                         aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1249
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1250
                                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1251
                                     createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1252
                                     createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1253
                                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1254
                                  )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1255
                                
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1256
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1257
                               handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1258
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1259
                            (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1260
                               name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1261
                               layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1262
                               majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1263
                               minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1264
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1265
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1266
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1267
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1268
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1269
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1270
                         name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1271
                         majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1272
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1273
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1274
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1275
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1276
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1277
                             callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1278
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1279
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1280
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1281
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1282
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1283
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1284
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1285
                             subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1286
                             aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1287
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1288
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1289
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1290
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1291
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1292
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1293
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1294
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1295
                             aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1296
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1297
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1298
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1299
                             aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1300
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1301
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1302
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1303
                             subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1304
                             aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1305
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1306
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1307
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1308
                             aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1309
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1310
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1311
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1312
                             subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1313
                             aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1314
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1315
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1316
                             subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1317
                             aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1318
                             callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1319
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1320
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1321
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1322
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1323
                             aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1324
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1325
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1326
                             subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1327
                             aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1328
                           )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1329
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1330
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1331
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1332
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1333
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1334
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1335
                             subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1336
                             aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1337
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1338
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1339
                             subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1340
                             aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1341
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1342
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1343
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1344
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1345
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1346
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1347
                         name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1348
                         majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1349
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1350
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1351
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1352
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1353
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1354
                             callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1355
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1356
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1357
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1358
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1359
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1360
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1361
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1362
                             subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1363
                             aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1364
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1365
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1366
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1367
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1368
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1369
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1370
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1371
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1372
                             aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1373
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1374
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1375
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1376
                             aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1377
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1378
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1379
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1380
                             subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1381
                             aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1382
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1383
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1384
                             subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1385
                             aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1386
                             callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1387
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1388
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1389
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1390
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1391
                             aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1392
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1393
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1394
                             subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1395
                             aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1396
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1397
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1398
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1399
                             subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1400
                             aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1401
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1402
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1403
                             subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1404
                             aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1405
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1406
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1407
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1408
                             subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1409
                             aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1410
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1411
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1412
                             subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1413
                             aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1414
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1415
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1416
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1417
                             subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1418
                             aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1419
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1420
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1421
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1422
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1423
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1424
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1425
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1426
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1427
                   handles: (Any 0.25 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1428
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1429
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1430
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1431
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1432
             handles: (Any 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1433
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1434
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1435
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1436
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1437
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1438
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1439
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1440
multipleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1441
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1442
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1443
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1444
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1445
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1446
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1447
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1448
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1449
     Tools::NavigatorCanvas new openInterface:#multipleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1450
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1451
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1452
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1453
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1454
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1455
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1456
       name: multipleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1457
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1458
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1459
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1460
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1461
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1462
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1463
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1464
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1465
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1466
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1467
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1468
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1469
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1470
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1471
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1472
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1473
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1474
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1475
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1476
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1477
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1478
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1479
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1480
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1481
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1482
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1483
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1484
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1485
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1486
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1487
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1488
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1489
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1490
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1491
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1492
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1493
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1494
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1495
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1496
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1497
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1498
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1499
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1500
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1501
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1502
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1503
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1504
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1505
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1506
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1507
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1508
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1509
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1510
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1511
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1512
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1513
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1514
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1515
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1516
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1517
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1518
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1519
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1520
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1521
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1522
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1523
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1524
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1525
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1526
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1527
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1528
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1529
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1530
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1531
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1532
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1533
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1534
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1535
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1536
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1537
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1538
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1539
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1540
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1541
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1542
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1543
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1544
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1545
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1546
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1547
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1548
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1549
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1550
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1551
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1552
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1553
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1554
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1555
                                   subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1556
                                   aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1557
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1558
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1559
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1560
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1561
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1562
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1563
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1564
                                   subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1565
                                   aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1566
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1567
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1568
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1569
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1570
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1571
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1572
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1573
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1574
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1575
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1576
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1577
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1578
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1579
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1580
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1581
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1582
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1583
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1584
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1585
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1586
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1587
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1588
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1589
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1590
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1591
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1592
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1593
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1594
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1595
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1596
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1597
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1598
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1599
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1600
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1601
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1602
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1603
                                 ) 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1604
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1605
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1606
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1607
                                       )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1608
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1609
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1610
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1611
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1612
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1613
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1614
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1615
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1616
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1617
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1618
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1619
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1620
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1621
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1622
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1623
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1624
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1625
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1626
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1627
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1628
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1629
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1630
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1631
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1632
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1633
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1634
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1635
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1636
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1637
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1638
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1639
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1640
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1641
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1642
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1643
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1644
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1645
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1646
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1647
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1648
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1649
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1650
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1651
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1652
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1653
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1654
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1655
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1656
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1657
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1658
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1659
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1660
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1661
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1662
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1663
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1664
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1665
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1666
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1667
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1668
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1669
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1670
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1671
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1672
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1673
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1674
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1675
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1676
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1677
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1678
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1679
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1680
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1681
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1682
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1683
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1684
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1685
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1686
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1687
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1688
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1689
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1690
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1691
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1692
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1693
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1694
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1695
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1696
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1697
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1698
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1699
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1700
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1701
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1702
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1703
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1704
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1705
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1706
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1707
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1708
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1709
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1710
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1711
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1712
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1713
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1714
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1715
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1716
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1717
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1718
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1719
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1720
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1721
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1722
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1723
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1724
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1725
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1726
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1727
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1728
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1729
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1730
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1731
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1732
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1733
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1734
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1735
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1736
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1737
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1738
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1739
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1740
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1741
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1742
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1743
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1744
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1745
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1746
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1747
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1748
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1749
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1750
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1751
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1752
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1753
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1754
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1755
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1756
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1757
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1758
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1759
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1760
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1761
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1762
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1763
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1764
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1765
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1766
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1767
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1768
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1769
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1770
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1771
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1772
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1773
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1774
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1775
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1776
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1777
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1778
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1779
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1780
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1781
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1782
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1783
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1784
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1785
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1786
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1787
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1788
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1789
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1790
             handles: (Any 0.333333 0.666667 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1791
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1792
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1793
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1794
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1795
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1796
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1797
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1798
multipleClassDiffBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1799
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1800
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1801
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1802
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1803
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1804
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1805
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1806
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleClassDiffBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1807
     Tools::NavigatorCanvas new openInterface:#multipleClassDiffBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1808
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1809
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1810
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1811
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1812
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1813
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1814
       name: multipleClassDiffBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1815
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1816
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1817
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1818
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1819
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1820
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1821
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1822
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1823
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1824
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1825
          (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1826
             name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1827
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -30 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1828
             majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1829
             subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1830
            (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1831
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1832
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1833
                 subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1834
                 callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1835
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1836
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1837
                 subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1838
                 aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1839
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1840
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1841
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1842
                 subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1843
                 aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1844
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1845
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1846
                 subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1847
                 aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1848
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1849
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1850
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1851
                 subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1852
                 aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1853
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1854
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1855
                 subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1856
                 aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1857
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1858
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1859
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1860
                 subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1861
                 aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1862
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1863
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1864
                 subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1865
                 aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1866
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1867
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1868
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1869
                 subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1870
                 aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1871
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1872
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1873
                 subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1874
                 aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1875
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1876
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1877
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1878
                 subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1879
                 aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1880
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1881
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1882
                 subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1883
                 aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1884
                 callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1885
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1886
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1887
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1888
                 subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1889
                 aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1890
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1891
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1892
                 subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1893
                 aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1894
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1895
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1896
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1897
                 subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1898
                 aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1899
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1900
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1901
                 subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1902
                 aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1903
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1904
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1905
             createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1906
             createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1907
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1908
          (LabelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1909
             label: 'projectInfo'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1910
             name: 'Label1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1911
             layout: (LayoutFrame 0 0 -30 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1912
             level: -1
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1913
             labelChannel: classesProjectInfoHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1914
             adjust: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1915
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1916
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1917
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1918
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1919
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1920
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1921
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1922
multipleClassExtensionBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1923
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1924
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1925
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1926
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1927
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1928
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1929
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1930
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleClassExtensionBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1931
     Tools::NavigatorCanvas new openInterface:#multipleClassExtensionBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1932
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1933
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1934
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1935
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1936
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1937
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1938
       name: multipleClassExtensionBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1939
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1940
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1941
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1942
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1943
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1944
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1945
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1946
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1947
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1948
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1949
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1950
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1951
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1952
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1953
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1954
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1955
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1956
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1957
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1958
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1959
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1960
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1961
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1962
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1963
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1964
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1965
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1966
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1967
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1968
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1969
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1970
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1971
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1972
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1973
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1974
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1975
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1976
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1977
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1978
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1979
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1980
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1981
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1982
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1983
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1984
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1985
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1986
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1987
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1988
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1989
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1990
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1991
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1992
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1993
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1994
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1995
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1996
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1997
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1998
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1999
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2000
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2001
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2002
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2003
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2004
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2005
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2006
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2007
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2008
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2009
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2010
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2011
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2012
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2013
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2014
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2015
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2016
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2017
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2018
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2019
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2020
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2021
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2022
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2023
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2024
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2025
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2026
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2027
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2028
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2029
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2030
                                   subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2031
                                   aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2032
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2033
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2034
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2035
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2036
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2037
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2038
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2039
                                   subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2040
                                   aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2041
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2042
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2043
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2044
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2045
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2046
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2047
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2048
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2049
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2050
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2051
                               name: 'ProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2052
                               majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2053
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2054
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2055
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2056
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2057
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2058
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2059
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2060
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2061
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2062
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2063
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2064
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2065
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2066
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2067
                                   aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2068
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2069
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2070
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2071
                                   aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2072
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2073
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2074
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2075
                                   subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2076
                                   aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2077
                                   callBack: projectSelectionChangedForFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2078
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2079
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2080
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2081
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2082
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2083
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2084
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2085
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2086
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2087
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2088
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2089
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2090
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2091
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2092
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2093
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2094
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2095
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2096
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2097
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2098
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2099
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2100
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2101
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2102
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2103
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2104
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2105
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2106
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2107
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2108
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2109
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2110
                                 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2111
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2112
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2113
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2114
                                       )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2115
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2116
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2117
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2118
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2119
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2120
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2121
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2122
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2123
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2124
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2125
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2126
                         handles: (Any 0.7 1.0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2127
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2128
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2129
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2130
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2131
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2132
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2133
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2134
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2135
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2136
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2137
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2138
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2139
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2140
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2141
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2142
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2143
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2144
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2145
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2146
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2147
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2148
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2149
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2150
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2151
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2152
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2153
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2154
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2155
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2156
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2157
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2158
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2159
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2160
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2161
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2162
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2163
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2164
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2165
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2166
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2167
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2168
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2169
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2170
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2171
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2172
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2173
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2174
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2175
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2176
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2177
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2178
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2179
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2180
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2181
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2182
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2183
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2184
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2185
                       subAspect: packageFilterOnInput
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2186
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2187
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2188
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2189
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2190
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2191
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2192
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2193
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2194
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2195
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2196
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2197
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2198
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2199
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2200
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2201
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2202
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2203
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2204
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2205
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2206
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2207
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2208
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2209
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2210
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2211
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2212
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2213
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2214
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2215
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2216
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2217
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2218
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2219
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2220
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2221
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2222
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2223
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2224
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2225
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2226
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2227
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2228
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2229
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2230
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2231
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2232
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2233
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2234
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2235
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2236
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2237
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2238
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2239
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2240
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2241
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2242
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2243
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2244
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2245
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2246
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2247
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2248
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2249
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2250
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2251
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2252
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2253
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2254
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2255
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2256
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2257
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2258
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2259
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2260
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2261
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2262
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2263
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2264
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2265
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2266
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2267
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2268
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2269
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2270
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2271
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2272
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2273
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2274
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2275
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2276
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2277
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2278
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2279
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2280
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2281
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2282
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2283
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2284
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2285
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2286
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2287
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2288
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2289
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2290
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2291
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2292
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2293
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2294
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2295
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2296
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2297
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2298
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2299
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2300
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2301
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2302
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2303
             handles: (Any 0.333333 0.666667 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2304
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2305
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2306
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2307
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2308
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2309
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2310
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2311
multipleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2312
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2313
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2314
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2315
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2316
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2317
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2318
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2319
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2320
     Tools::NavigatorCanvas new openInterface:#multipleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2321
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2322
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2323
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2324
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2325
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2326
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2327
       name: multipleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2328
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2329
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2330
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2331
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2332
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2333
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2334
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2335
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2336
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2337
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2338
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2339
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2340
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2341
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2342
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2343
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2344
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2345
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2346
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2347
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2348
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2349
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2350
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2351
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2352
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2353
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2354
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2355
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2356
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2357
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2358
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2359
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2360
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2361
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2362
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2363
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2364
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2365
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2366
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2367
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2368
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2369
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2370
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2371
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2372
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2373
                       subAspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2374
                       aspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2375
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2376
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2377
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2378
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2379
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2380
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2381
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2382
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2383
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2384
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2385
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2386
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2387
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2388
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2389
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2390
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2391
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2392
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2393
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2394
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2395
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2396
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2397
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2398
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2399
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2400
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2401
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2402
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2403
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2404
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2405
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2406
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2407
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2408
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2409
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2410
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2411
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2412
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2413
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2414
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2415
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2416
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2417
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2418
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2419
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2420
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2421
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2422
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2423
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2424
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2425
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2426
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2427
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2428
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2429
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2430
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2431
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2432
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2433
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2434
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2435
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2436
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2437
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2438
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2439
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2440
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2441
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2442
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2443
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2444
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2445
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2446
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2447
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2448
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2449
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2450
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2451
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2452
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2453
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2454
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2455
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2456
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2457
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2458
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2459
                       subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2460
                       aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2461
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2462
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2463
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2464
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2465
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2466
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2467
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2468
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2469
             handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2470
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2471
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2472
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2473
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2474
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2475
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2476
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2477
multipleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2478
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2479
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2480
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2481
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2482
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2483
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2484
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2485
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2486
     Tools::NavigatorCanvas new openInterface:#multipleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2487
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2488
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2489
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2490
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2491
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2492
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2493
       name: multipleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2494
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2495
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2496
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2497
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2498
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2499
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2500
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2501
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2502
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2503
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2504
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2505
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2506
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2507
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2508
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2509
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2510
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2511
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2512
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2513
                   name: 'NamespaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2514
                   majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2515
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2516
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2517
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2518
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2519
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2520
                       callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2521
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2522
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2523
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2524
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2525
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2526
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2527
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2528
                       subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2529
                       aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2530
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2531
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2532
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2533
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2534
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2535
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2536
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2537
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2538
                       aspect: nameSpaceListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2539
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2540
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2541
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2542
                       aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2543
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2544
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2545
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2546
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2547
                       aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2548
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2549
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2550
                       subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2551
                       aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2552
                       callBack: nameSpaceSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2553
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2554
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2555
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2556
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2557
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2558
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2559
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2560
                       subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2561
                       aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2562
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2563
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2564
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2565
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2566
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2567
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2568
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2569
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2570
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2571
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2572
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2573
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2574
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2575
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2576
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2577
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2578
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2579
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2580
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2581
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2582
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2583
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2584
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2585
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2586
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2587
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2588
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2589
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2590
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2591
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2592
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2593
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2594
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2595
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2596
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2597
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2598
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2599
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2600
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2601
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2602
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2603
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2604
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2605
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2606
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2607
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2608
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2609
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2610
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2611
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2612
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2613
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2614
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2615
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2616
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2617
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2618
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2619
                                   subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2620
                                   aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2621
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2622
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2623
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2624
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2625
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2626
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2627
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2628
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2629
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2630
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2631
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2632
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2633
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2634
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2635
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2636
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2637
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2638
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2639
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2640
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2641
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2642
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2643
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2644
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2645
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2646
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2647
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2648
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2649
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2650
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2651
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2652
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2653
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2654
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2655
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2656
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2657
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2658
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2659
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2660
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2661
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2662
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2663
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2664
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2665
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2666
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2667
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2668
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2669
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2670
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2671
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2672
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2673
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2674
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2675
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2676
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2677
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2678
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2679
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2680
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2681
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2682
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2683
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2684
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2685
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2686
                                 ) 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2687
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2688
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2689
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2690
                                       )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2691
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2692
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2693
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2694
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2695
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2696
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2697
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2698
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2699
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2700
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2701
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2702
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2703
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2704
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2705
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2706
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2707
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2708
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2709
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2710
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2711
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2712
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2713
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2714
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2715
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2716
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2717
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2718
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2719
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2720
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2721
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2722
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2723
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2724
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2725
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2726
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2727
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2728
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2729
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2730
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2731
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2732
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2733
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2734
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2735
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2736
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2737
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2738
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2739
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2740
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2741
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2742
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2743
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2744
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2745
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2746
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2747
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2748
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2749
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2750
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2751
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2752
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2753
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2754
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2755
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2756
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2757
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2758
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2759
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2760
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2761
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2762
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2763
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2764
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2765
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2766
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2767
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2768
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2769
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2770
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2771
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2772
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2773
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2774
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2775
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2776
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2777
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2778
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2779
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2780
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2781
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2782
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2783
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2784
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2785
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2786
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2787
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2788
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2789
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2790
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2791
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2792
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2793
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2794
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2795
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2796
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2797
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2798
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2799
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2800
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2801
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2802
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2803
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2804
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2805
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2806
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2807
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2808
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2809
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2810
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2811
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2812
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2813
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2814
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2815
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2816
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2817
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2818
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2819
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2820
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2821
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2822
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2823
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2824
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2825
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2826
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2827
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2828
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2829
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2830
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2831
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2832
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2833
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2834
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2835
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2836
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2837
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2838
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2839
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2840
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2841
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2842
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2843
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2844
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2845
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2846
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2847
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2848
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2849
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2850
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2851
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2852
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2853
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2854
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2855
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2856
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2857
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2858
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2859
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2860
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2861
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2862
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2863
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2864
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2865
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2866
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2867
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2868
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2869
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2870
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2871
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2872
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2873
             handles: (Any 0.25 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2874
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2875
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2876
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2877
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2878
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2879
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2880
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2881
multipleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2882
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2883
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2884
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2885
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2886
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2887
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2888
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2889
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2890
     Tools::NavigatorCanvas new openInterface:#multipleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2891
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2892
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2893
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2894
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2895
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2896
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2897
       name: multipleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2898
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2899
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2900
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2901
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2902
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2903
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2904
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2905
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2906
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2907
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2908
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2909
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2910
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2911
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2912
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2913
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2914
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2915
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2916
                (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2917
                   name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2918
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2919
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2920
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2921
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2922
                         name: 'NameSpaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2923
                         majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2924
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2925
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2926
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2927
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2928
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2929
                             callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2930
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2931
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2932
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2933
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2934
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2935
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2936
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2937
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2938
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2939
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2940
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2941
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2942
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2943
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2944
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2945
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2946
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2947
                             aspect: nameSpaceListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2948
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2949
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2950
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2951
                             aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2952
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2953
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2954
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2955
                             subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2956
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2957
                             callBack: nameSpaceSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2958
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2959
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2960
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2961
                             aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2962
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2963
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2964
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2965
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2966
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2967
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2968
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2969
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2970
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2971
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2972
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2973
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2974
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2975
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2976
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2977
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2978
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2979
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2980
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2981
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2982
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2983
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2984
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2985
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2986
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2987
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2988
                             subAspect: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2989
                             aspect: forceClassCategoryGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2990
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2991
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2992
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2993
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2994
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2995
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2996
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2997
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2998
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2999
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3000
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3001
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3002
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3003
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3004
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3005
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3006
                             subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3007
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3008
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3009
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3010
                             subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3011
                             aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3012
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3013
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3014
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3015
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3016
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3017
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3018
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3019
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3020
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3021
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3022
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3023
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3024
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3025
                             aspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3026
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3027
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3028
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3029
                             aspect: categoryListSlaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3030
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3031
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3032
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3033
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3034
                             aspect: classCategoryListUpdateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3035
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3036
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3037
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3038
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3039
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3040
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3041
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3042
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3043
                   handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3044
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3045
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3046
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3047
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3048
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3049
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3050
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3051
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3052
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3053
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3054
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3055
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3056
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3057
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3058
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3059
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3060
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3061
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3062
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3063
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3064
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3065
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3066
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3067
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3068
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3069
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3070
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3071
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3072
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3073
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3074
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3075
                                   subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3076
                                   aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3077
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3078
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3079
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3080
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3081
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3082
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3083
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3084
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3085
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3086
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3087
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3088
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3089
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3090
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3091
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3092
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3093
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3094
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3095
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3096
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3097
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3098
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3099
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3100
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3101
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3102
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3103
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3104
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3105
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3106
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3107
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3108
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3109
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3110
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3111
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3112
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3113
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3114
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3115
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3116
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3117
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3118
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3119
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3120
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3121
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3122
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3123
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3124
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3125
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3126
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3127
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3128
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3129
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3130
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3131
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3132
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3133
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3134
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3135
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3136
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3137
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3138
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3139
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3140
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3141
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3142
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3143
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3144
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3145
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3146
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3147
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3148
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3149
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3150
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3151
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3152
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3153
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3154
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3155
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3156
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3157
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3158
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3159
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3160
                                 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3161
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3162
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3163
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3164
                                       )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3165
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3166
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3167
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3168
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3169
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3170
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3171
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3172
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3173
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3174
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3175
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3176
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3177
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3178
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3179
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3180
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3181
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3182
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3183
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3184
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3185
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3186
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3187
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3188
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3189
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3190
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3191
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3192
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3193
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3194
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3195
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3196
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3197
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3198
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3199
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3200
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3201
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3202
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3203
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3204
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3205
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3206
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3207
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3208
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3209
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3210
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3211
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3212
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3213
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3214
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3215
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3216
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3217
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3218
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3219
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3220
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3221
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3222
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3223
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3224
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3225
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3226
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3227
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3228
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3229
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3230
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3231
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3232
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3233
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3234
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3235
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3236
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3237
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3238
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3239
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3240
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3241
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3242
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3243
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3244
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3245
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3246
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3247
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3248
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3249
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3250
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3251
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3252
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3253
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3254
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3255
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3256
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3257
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3258
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3259
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3260
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3261
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3262
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3263
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3264
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3265
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3266
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3267
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3268
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3269
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3270
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3271
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3272
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3273
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3274
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3275
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3276
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3277
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3278
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3279
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3280
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3281
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3282
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3283
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3284
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3285
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3286
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3287
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3288
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3289
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3290
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3291
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3292
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3293
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3294
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3295
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3296
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3297
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3298
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3299
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3300
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3301
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3302
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3303
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3304
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3305
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3306
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3307
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3308
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3309
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3310
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3311
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3312
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3313
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3314
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3315
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3316
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3317
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3318
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3319
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3320
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3321
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3322
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3323
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3324
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3325
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3326
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3327
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3328
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3329
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3330
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3331
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3332
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3333
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3334
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3335
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3336
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3337
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3338
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3339
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3340
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3341
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3342
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3343
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3344
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3345
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3346
             handles: (Any 0.25 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3347
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3348
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3349
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3350
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3351
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3352
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3353
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3354
multipleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3355
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3356
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3357
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3358
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3359
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3360
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3361
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3362
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3363
     Tools::NavigatorCanvas new openInterface:#multipleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3364
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3365
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3366
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3367
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3368
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3369
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3370
       name: multipleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3371
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3372
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3373
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3374
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3375
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3376
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3377
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3378
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3379
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3380
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3381
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3382
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3383
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3384
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3385
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3386
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3387
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3388
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3389
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3390
                   name: 'ProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3391
                   majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3392
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3393
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3394
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3395
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3396
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3397
                       callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3398
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3399
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3400
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3401
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3402
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3403
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3404
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3405
                       subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3406
                       aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3407
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3408
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3409
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3410
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3411
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3412
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3413
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3414
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3415
                       aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3416
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3417
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3418
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3419
                       aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3420
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3421
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3422
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3423
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3424
                       aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3425
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3426
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3427
                       subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3428
                       aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3429
                       callBack: projectSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3430
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3431
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3432
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3433
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3434
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3435
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3436
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3437
                       subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3438
                       aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3439
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3440
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3441
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3442
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3443
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3444
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3445
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3446
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3447
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3448
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3449
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3450
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3451
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3452
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3453
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3454
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3455
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3456
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3457
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3458
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3459
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3460
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3461
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3462
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3463
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3464
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3465
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3466
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3467
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3468
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3469
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3470
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3471
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3472
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3473
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3474
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3475
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3476
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3477
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3478
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3479
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3480
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3481
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3482
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3483
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3484
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3485
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3486
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3487
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3488
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3489
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3490
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3491
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3492
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3493
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3494
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3495
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3496
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3497
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3498
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3499
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3500
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3501
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3502
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3503
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3504
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3505
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3506
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3507
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3508
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3509
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3510
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3511
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3512
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3513
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3514
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3515
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3516
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3517
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3518
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3519
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3520
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3521
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3522
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3523
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3524
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3525
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3526
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3527
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3528
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3529
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3530
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3531
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3532
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3533
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3534
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3535
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3536
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3537
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3538
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3539
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3540
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3541
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3542
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3543
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3544
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3545
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3546
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3547
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3548
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3549
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3550
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3551
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3552
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3553
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3554
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3555
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3556
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3557
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3558
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3559
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3560
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3561
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3562
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3563
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3564
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3565
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3566
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3567
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3568
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3569
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3570
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3571
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3572
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3573
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3574
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3575
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3576
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3577
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3578
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3579
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3580
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3581
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3582
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3583
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3584
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3585
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3586
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3587
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3588
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3589
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3590
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3591
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3592
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3593
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3594
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3595
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3596
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3597
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3598
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3599
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3600
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3601
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3602
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3603
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3604
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3605
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3606
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3607
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3608
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3609
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3610
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3611
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3612
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3613
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3614
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3615
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3616
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3617
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3618
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3619
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3620
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3621
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3622
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3623
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3624
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3625
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3626
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3627
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3628
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3629
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3630
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3631
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3632
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3633
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3634
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3635
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3636
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3637
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3638
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3639
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3640
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3641
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3642
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3643
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3644
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3645
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3646
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3647
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3648
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3649
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3650
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3651
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3652
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3653
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3654
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3655
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3656
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3657
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3658
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3659
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3660
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3661
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3662
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3663
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3664
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3665
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3666
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3667
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3668
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3669
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3670
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3671
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3672
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3673
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3674
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3675
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3676
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3677
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3678
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3679
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3680
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3681
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3682
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3683
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3684
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3685
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3686
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3687
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3688
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3689
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3690
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3691
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3692
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3693
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3694
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3695
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3696
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3697
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3698
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3699
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3700
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3701
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3702
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3703
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3704
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3705
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3706
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3707
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3708
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3709
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3710
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3711
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3712
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3713
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3714
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3715
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3716
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3717
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3718
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3719
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3720
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3721
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3722
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3723
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3724
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3725
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3726
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3727
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3728
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3729
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3730
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3731
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3732
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3733
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3734
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3735
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3736
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3737
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3738
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3739
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3740
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3741
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3742
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3743
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3744
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3745
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3746
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3747
             handles: (Any 0.25 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3748
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3749
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3750
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3751
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3752
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3753
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3754
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3755
multipleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3756
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3757
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3758
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3759
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3760
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3761
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3762
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3763
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3764
     Tools::NavigatorCanvas new openInterface:#multipleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3765
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3766
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3767
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3768
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3769
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3770
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3771
       name: multipleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3772
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3773
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3774
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3775
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3776
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3777
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3778
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3779
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3780
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3781
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3782
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3783
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3784
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3785
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3786
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3787
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3788
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3789
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3790
                (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3791
                   name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3792
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3793
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3794
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3795
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3796
                         name: 'ProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3797
                         majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3798
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3799
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3800
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3801
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3802
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3803
                             callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3804
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3805
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3806
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3807
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3808
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3809
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3810
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3811
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3812
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3813
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3814
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3815
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3816
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3817
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3818
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3819
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3820
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3821
                             aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3822
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3823
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3824
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3825
                             aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3826
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3827
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3828
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3829
                             subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3830
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3831
                             callBack: projectSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3832
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3833
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3834
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3835
                             aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3836
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3837
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3838
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3839
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3840
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3841
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3842
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3843
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3844
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3845
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3846
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3847
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3848
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3849
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3850
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3851
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3852
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3853
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3854
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3855
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3856
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3857
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3858
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3859
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3860
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3861
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3862
                             subAspect: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3863
                             aspect: forceClassCategoryGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3864
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3865
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3866
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3867
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3868
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3869
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3870
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3871
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3872
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3873
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3874
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3875
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3876
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3877
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3878
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3879
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3880
                             subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3881
                             aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3882
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3883
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3884
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3885
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3886
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3887
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3888
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3889
                             subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3890
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3891
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3892
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3893
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3894
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3895
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3896
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3897
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3898
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3899
                             aspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3900
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3901
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3902
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3903
                             aspect: categoryListSlaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3904
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3905
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3906
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3907
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3908
                             aspect: classCategoryListUpdateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3909
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3910
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3911
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3912
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3913
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3914
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3915
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3916
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3917
                   handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3918
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3919
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3920
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3921
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3922
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3923
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3924
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3925
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3926
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3927
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3928
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3929
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3930
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3931
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3932
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3933
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3934
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3935
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3936
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3937
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3938
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3939
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3940
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3941
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3942
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3943
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3944
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3945
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3946
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3947
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3948
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3949
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3950
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3951
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3952
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3953
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3954
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3955
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3956
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3957
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3958
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3959
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3960
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3961
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3962
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3963
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3964
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3965
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3966
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3967
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3968
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3969
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3970
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3971
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3972
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3973
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3974
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3975
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3976
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3977
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3978
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3979
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3980
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3981
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3982
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3983
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3984
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3985
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3986
                                   aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3987
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3988
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3989
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3990
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3991
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3992
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3993
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3994
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3995
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3996
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3997
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3998
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3999
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4000
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4001
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4002
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4003
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4004
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4005
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4006
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4007
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4008
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4009
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4010
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4011
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4012
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4013
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4014
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4015
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4016
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4017
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4018
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4019
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4020
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4021
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4022
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4023
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4024
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4025
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4026
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4027
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4028
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4029
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4030
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4031
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4032
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4033
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4034
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4035
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4036
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4037
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4038
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4039
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4040
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  4041
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4042
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4043
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4044
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4045
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4046
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4047
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4048
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4049
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4050
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4051
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4052
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4053
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4054
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4055
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4056
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4057
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4058
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4059
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4060
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4061
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4062
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4063
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4064
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4065
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4066
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4067
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4068
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4069
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4070
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4071
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4072
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4073
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4074
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4075
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4076
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4077
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4078
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4079
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4080
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4081
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4082
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4083
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4084
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4085
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4086
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4087
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4088
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4089
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4090
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4091
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4092
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4093
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4094
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4095
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4096
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4097
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4098
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4099
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4100
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4101
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4102
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4103
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4104
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4105
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4106
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4107
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4108
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4109
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4110
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4111
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4112
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4113
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4114
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4115
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4116
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4117
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4118
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4119
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4120
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4121
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4122
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4123
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4124
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4125
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4126
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4127
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4128
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4129
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4130
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4131
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4132
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4133
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4134
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4135
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4136
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4137
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4138
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4139
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4140
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4141
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4142
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4143
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4144
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4145
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4146
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4147
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4148
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4149
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4150
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4151
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4152
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4153
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4154
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4155
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4156
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4157
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4158
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4159
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4160
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4161
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4162
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4163
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4164
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4165
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4166
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4167
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4168
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4169
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4170
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4171
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4172
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4173
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4174
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4175
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4176
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4177
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4178
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4179
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4180
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4181
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4182
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4183
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4184
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4185
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4186
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4187
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4188
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4189
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4190
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4191
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4192
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4193
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4194
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4195
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4196
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4197
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4198
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4199
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4200
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4201
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4202
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4203
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4204
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4205
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4206
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4207
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4208
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4209
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4210
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4211
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4212
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4213
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4214
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4215
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4216
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4217
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4218
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4219
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4220
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4221
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4222
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4223
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4224
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4225
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4226
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4227
             handles: (Any 0.25 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4228
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4229
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4230
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4231
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4232
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4233
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4234
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4235
multipleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4236
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4237
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4238
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4239
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4240
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4241
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4242
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4243
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#multipleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4244
     Tools::NavigatorCanvas new openInterface:#multipleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4245
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4246
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4247
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4248
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4249
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4250
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4251
       name: multipleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4252
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4253
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4254
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4255
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4256
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4257
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4258
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4259
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4260
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4261
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4262
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4263
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4264
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4265
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4266
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4267
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4268
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4269
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4270
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4271
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4272
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4273
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4274
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4275
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4276
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4277
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4278
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4279
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4280
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4281
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4282
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4283
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4284
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4285
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4286
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4287
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4288
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4289
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4290
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4291
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4292
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4293
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4294
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4295
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4296
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4297
                       subAspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4298
                       aspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4299
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4300
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4301
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4302
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4303
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4304
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4305
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4306
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4307
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4308
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4309
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4310
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4311
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4312
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4313
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4314
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4315
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4316
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4317
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4318
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4319
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4320
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4321
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4322
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4323
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4324
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4325
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4326
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4327
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4328
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4329
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4330
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4331
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4332
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4333
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4334
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4335
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4336
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4337
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4338
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4339
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4340
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4341
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4342
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4343
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4344
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4345
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4346
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4347
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4348
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4349
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4350
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4351
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4352
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4353
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4354
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4355
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4356
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4357
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4358
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4359
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4360
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4361
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4362
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4363
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4364
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4365
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4366
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4367
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4368
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4369
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4370
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4371
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4372
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4373
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4374
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4375
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4376
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4377
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4378
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4379
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4380
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4381
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4382
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4383
                       subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4384
                       aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4385
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4386
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4387
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4388
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4389
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4390
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4391
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4392
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4393
             handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4394
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4395
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4396
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4397
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4398
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4399
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4400
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4401
protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4402
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4403
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4404
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4405
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4406
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4407
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4408
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4409
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4410
     Tools::NavigatorCanvas new openInterface:#protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4411
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4412
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4413
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4414
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4415
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4416
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4417
       name: protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4418
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4419
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4420
         label: 'Protocol and Method List'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4421
         name: 'Protocol and Method List'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4422
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4423
         bounds: (Rectangle 0 0 498 456)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4424
         icon: defaultIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4425
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4426
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4427
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4428
         collection: (
15441
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4429
          (VerticalPanelViewSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4430
             name: 'VerticalPanel1'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4431
             layout: (LayoutFrame 0 0 0 0 0 1 0 1)
15441
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4432
             horizontalLayout: fit
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4433
             verticalLayout: bottomFit
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4434
             horizontalSpace: 3
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4435
             verticalSpace: 3
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4436
             component: 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4437
            (SpecCollection
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4438
               collection: (
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4439
                (SubCanvasSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4440
                   name: 'ProtocolAndMethodListCanvas'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4441
                   hasHorizontalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4442
                   hasVerticalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4443
                   majorKey: #'Tools::NavigatorCanvas'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4444
                   minorKey: #'protocolAndMethodListSpec_Both'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4445
                   specHolder: organizerProtocolAndMethodListSpecHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4446
                   subAspectHolders: 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4447
                  (Array
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4448
                     
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4449
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4450
                       subAspect: environmentHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4451
                       aspect: environmentHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4452
                     )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4453
                   )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4454
                   createNewBuilder: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4455
                   extent: (Point 498 456)
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4456
                 )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4457
                (SubCanvasSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4458
                   name: 'TestRunnerEmbedded'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4459
                   initiallyInvisible: true
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4460
                   visibilityChannel: testRunnerVisibleHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4461
                   hasHorizontalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4462
                   hasVerticalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4463
                   majorKey: #'Tools::TestRunnerEmbedded'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4464
                   subAspectHolders: 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4465
                  (Array
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4466
                     
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4467
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4468
                       subAspect: infoHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4469
                       aspect: infoLabelHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4470
                     ) 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4471
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4472
                       subAspect: methodGeneratorHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4473
                       aspect: selectorListGenerator
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4474
                     )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4475
                     
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4476
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4477
                       subAspect: selectedClassesHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4478
                       aspect: selectedClasses
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4479
                     ) 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4480
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4481
                       subAspect: selectedMethodsHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4482
                       aspect: selectedMethods
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4483
                     )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4484
                     
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4485
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4486
                       subAspect: selectedProtocolsHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4487
                       aspect: selectedProtocols
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4488
                     )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4489
                   )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4490
                   createNewApplication: true
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4491
                   createNewBuilder: true
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4492
                   extent: (Point 498 50)
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4493
                 )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4494
                )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4495
              
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4496
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4497
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4498
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4499
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4500
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4501
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4502
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4503
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4504
selectorBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4505
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4506
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4507
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4508
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4509
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4510
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4511
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4512
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#selectorBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4513
     Tools::NavigatorCanvas new openInterface:#selectorBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4514
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4515
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4516
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4517
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4518
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4519
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4520
       name: selectorBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4521
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4522
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4523
         label: 'SelectorBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4524
         name: 'SelectorBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4525
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4526
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4527
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4528
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4529
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4530
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4531
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4532
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4533
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4534
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4535
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4536
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4537
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4538
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4539
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4540
                   name: 'AllMethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4541
                   majorKey: FullMethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4542
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4543
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4544
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4545
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4546
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4547
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4548
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4549
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4550
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4551
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4552
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4553
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4554
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4555
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4556
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4557
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4558
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4559
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4560
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4561
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4562
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4563
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4564
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4565
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4566
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4567
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4568
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4569
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4570
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4571
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4572
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4573
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4574
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4575
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4576
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4577
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4578
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4579
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4580
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4581
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4582
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4583
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4584
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4585
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4586
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4587
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4588
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4589
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4590
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4591
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4592
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4593
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4594
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4595
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4596
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4597
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4598
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4599
                   name: 'ImplementedMethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4600
                   majorKey: ImplementingMethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4601
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4602
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4603
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4604
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4605
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4606
                       callBack: xxxDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4607
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4608
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4609
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4610
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4611
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4612
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4613
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4614
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4615
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4616
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4617
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4618
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4619
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4620
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4621
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4622
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4623
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4624
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4625
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4626
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4627
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4628
                       aspect: implementingClassListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4629
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4630
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4631
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4632
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4633
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4634
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4635
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4636
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4637
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4638
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4639
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4640
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4641
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4642
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4643
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4644
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4645
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4646
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4647
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4648
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4649
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4650
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4651
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4652
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4653
                   name: 'ImplementingClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4654
                   majorKey: ImplementingClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4655
                   minorKey: windowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4656
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4657
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4658
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4659
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4660
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4661
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4662
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4663
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4664
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4665
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4666
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4667
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4668
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4669
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4670
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4671
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4672
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4673
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4674
                       aspect: implementingClassListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4675
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4676
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4677
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4678
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4679
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4680
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4681
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4682
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4683
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4684
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4685
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4686
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4687
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4688
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4689
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4690
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4691
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4692
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4693
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4694
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4695
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4696
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4697
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4698
             handles: (Any 0.333333 0.666667 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4699
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4700
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4701
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4702
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4703
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4704
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4705
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4706
singleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4707
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4708
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4709
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4710
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4711
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4712
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4713
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4714
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4715
     Tools::NavigatorCanvas new openInterface:#singleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4716
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4717
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4718
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4719
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4720
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4721
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4722
       name: singleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4723
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4724
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4725
         label: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4726
         name: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4727
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4728
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4729
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4730
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4731
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4732
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4733
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4734
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4735
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4736
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4737
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4738
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4739
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4740
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4741
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4742
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4743
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4744
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4745
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4746
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4747
                         name: 'PseudoCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4748
                         layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4749
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4750
                         minorKey: singleCategoryWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4751
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4752
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4753
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4754
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4755
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4756
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4757
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4758
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4759
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4760
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4761
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4762
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4763
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4764
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4765
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4766
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4767
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4768
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4769
                             aspect: categoryListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4770
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4771
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4772
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4773
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4774
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4775
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4776
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4777
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4778
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4779
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4780
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4781
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4782
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4783
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4784
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4785
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4786
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4787
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4788
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4789
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4790
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4791
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4792
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4793
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4794
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4795
                         layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4796
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4797
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4798
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4799
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4800
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4801
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4802
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4803
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4804
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4805
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4806
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4807
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4808
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4809
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4810
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4811
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4812
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4813
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4814
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4815
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4816
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4817
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4818
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4819
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4820
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4821
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4822
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4823
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4824
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4825
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4826
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4827
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4828
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4829
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4830
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4831
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4832
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4833
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4834
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4835
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4836
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4837
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4838
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4839
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4840
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4841
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4842
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4843
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4844
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4845
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4846
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4847
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4848
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4849
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4850
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4851
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4852
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4853
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4854
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4855
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4856
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4857
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4858
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4859
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4860
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4861
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4862
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4863
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4864
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4865
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4866
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4867
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4868
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4869
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4870
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4871
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4872
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4873
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4874
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4875
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4876
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4877
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4878
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4879
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4880
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4881
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4882
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4883
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4884
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4885
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4886
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4887
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4888
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4889
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4890
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4891
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4892
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4893
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4894
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4895
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4896
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4897
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4898
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4899
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4900
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4901
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4902
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4903
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4904
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4905
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4906
                                   aspect: variablesMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4907
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4908
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4909
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4910
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4911
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4912
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4913
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4914
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  4915
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4916
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4917
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4918
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4919
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4920
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4921
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4922
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4923
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4924
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4925
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4926
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4927
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4928
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4929
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4930
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4931
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4932
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4933
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4934
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4935
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4936
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4937
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4938
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4939
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4940
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4941
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4942
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4943
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4944
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4945
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4946
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4947
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4948
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4949
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4950
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4951
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4952
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4953
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4954
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4955
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4956
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4957
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4958
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4959
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4960
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4961
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4962
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4963
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4964
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4965
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4966
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4967
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4968
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4969
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4970
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4971
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4972
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4973
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4974
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4975
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4976
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4977
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4978
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4979
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4980
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4981
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4982
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4983
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4984
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4985
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4986
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4987
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4988
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4989
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4990
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4991
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4992
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4993
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4994
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4995
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4996
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4997
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4998
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4999
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5000
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5001
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5002
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5003
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5004
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5005
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5006
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5007
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5008
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5009
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5010
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5011
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5012
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5013
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5014
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5015
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5016
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5017
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5018
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5019
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5020
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5021
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5022
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5023
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5024
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5025
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5026
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5027
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5028
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5029
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5030
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5031
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5032
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5033
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5034
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5035
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5036
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5037
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5038
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5039
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5040
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5041
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5042
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5043
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5044
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5045
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5046
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5047
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5048
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5049
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5050
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5051
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5052
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5053
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5054
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5055
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5056
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5057
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5058
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5059
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5060
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5061
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5062
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5063
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5064
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5065
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5066
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5067
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5068
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5069
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5070
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5071
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5072
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5073
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5074
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5075
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5076
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5077
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5078
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5079
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5080
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5081
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5082
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5083
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5084
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5085
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5086
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5087
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5088
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5089
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5090
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5091
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5092
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5093
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5094
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5095
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5096
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5097
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5098
             handles: (Any 0.333333 0.666667 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5099
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5100
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5101
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5102
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5103
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5104
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5105
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5106
singleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5107
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5108
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5109
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5110
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5111
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5112
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5113
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5114
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5115
     Tools::NavigatorCanvas new openInterface:#singleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5116
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5117
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5118
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5119
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5120
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5121
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5122
       name: singleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5123
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5124
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5125
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5126
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5127
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5128
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5129
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5130
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5131
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5132
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5133
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5134
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5135
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5136
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5137
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5138
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5139
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5140
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5141
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5142
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5143
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5144
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5145
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5146
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5147
                         name: 'PseudoClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5148
                         layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5149
                         majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5150
                         minorKey: singleClassWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5151
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5152
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5153
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5154
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5155
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5156
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5157
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5158
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5159
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5160
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5161
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5162
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5163
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5164
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5165
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5166
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5167
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5168
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5169
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5170
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5171
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5172
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5173
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5174
                             aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5175
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5176
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5177
                             subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5178
                             aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5179
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5180
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5181
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5182
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5183
                             aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5184
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5185
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5186
                             subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5187
                             aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5188
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5189
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5190
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5191
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5192
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5193
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5194
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5195
                             subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5196
                             aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5197
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5198
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5199
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5200
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5201
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5202
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5203
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5204
                         layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5205
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5206
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5207
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5208
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5209
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5210
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5211
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5212
                               name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5213
                               majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5214
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5215
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5216
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5217
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5218
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5219
                                   callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5220
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5221
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5222
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5223
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5224
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5225
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5226
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5227
                                   subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5228
                                   aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5229
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5230
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5231
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5232
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5233
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5234
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5235
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5236
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5237
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5238
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5239
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5240
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5241
                                   aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5242
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5243
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5244
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5245
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5246
                                   aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5247
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5248
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5249
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5250
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5251
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5252
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5253
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5254
                                   subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5255
                                   aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5256
                                   callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5257
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5258
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5259
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5260
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5261
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5262
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5263
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5264
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5265
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5266
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5267
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5268
                                   subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5269
                                   aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5270
                                 )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5271
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5272
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5273
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5274
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5275
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5276
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5277
                                   subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5278
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5279
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5280
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5281
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5282
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5283
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5284
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5285
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5286
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5287
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5288
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5289
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5290
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5291
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5292
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5293
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5294
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5295
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5296
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5297
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5298
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5299
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5300
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5301
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5302
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5303
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5304
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5305
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5306
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5307
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5308
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5309
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5310
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5311
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5312
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5313
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  5314
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5315
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5316
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5317
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5318
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5319
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5320
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5321
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5322
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5323
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5324
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5325
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5326
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5327
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5328
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5329
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5330
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5331
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5332
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5333
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5334
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5335
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5336
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5337
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5338
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5339
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5340
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5341
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5342
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5343
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5344
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5345
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5346
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5347
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5348
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5349
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5350
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5351
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5352
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5353
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5354
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5355
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5356
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5357
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5358
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5359
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5360
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5361
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5362
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5363
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5364
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5365
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5366
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5367
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5368
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5369
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5370
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5371
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5372
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5373
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5374
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5375
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5376
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5377
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5378
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5379
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5380
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5381
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5382
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5383
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5384
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5385
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5386
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5387
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5388
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5389
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5390
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5391
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5392
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5393
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5394
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5395
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5396
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5397
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5398
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5399
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5400
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5401
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5402
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5403
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5404
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5405
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5406
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5407
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5408
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5409
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5410
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5411
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5412
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5413
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5414
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5415
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5416
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5417
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5418
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5419
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5420
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5421
             handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5422
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5423
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5424
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5425
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5426
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5427
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5428
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5429
singleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5430
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5431
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5432
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5433
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5434
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5435
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5436
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5437
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5438
     Tools::NavigatorCanvas new openInterface:#singleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5439
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5440
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5441
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5442
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5443
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5444
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5445
       name: singleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5446
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5447
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5448
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5449
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5450
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5451
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5452
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5453
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5454
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5455
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5456
          (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5457
             name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5458
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5459
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5460
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5461
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5462
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5463
                   name: 'PseudoProtocolList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5464
                   layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5465
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5466
                   minorKey: singleProtocolWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5467
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5468
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5469
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5470
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5471
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5472
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5473
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5474
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5475
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5476
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5477
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5478
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5479
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5480
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5481
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5482
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5483
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5484
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5485
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5486
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5487
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5488
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5489
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5490
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5491
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5492
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5493
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5494
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5495
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5496
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5497
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5498
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5499
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5500
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5501
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5502
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5503
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5504
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5505
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5506
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5507
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5508
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5509
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5510
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5511
                   layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5512
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5513
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5514
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5515
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5516
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5517
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5518
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5519
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5520
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5521
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5522
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5523
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5524
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5525
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5526
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5527
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5528
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5529
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5530
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5531
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5532
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5533
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5534
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5535
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5536
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5537
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5538
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5539
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5540
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5541
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5542
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5543
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5544
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5545
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5546
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5547
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5548
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5549
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5550
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5551
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5552
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5553
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5554
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5555
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5556
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5557
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5558
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5559
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5560
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5561
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5562
                       subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5563
                       aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5564
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5565
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5566
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5567
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5568
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5569
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5570
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5571
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5572
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5573
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5574
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5575
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5576
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5577
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5578
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5579
singleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5580
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5581
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5582
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5583
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5584
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5585
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5586
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5587
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5588
     Tools::NavigatorCanvas new openInterface:#singleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5589
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5590
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5591
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5592
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5593
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5594
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5595
       name: singleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5596
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5597
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5598
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5599
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5600
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5601
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5602
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5603
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5604
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5605
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5606
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5607
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5608
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5609
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5610
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5611
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5612
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5613
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5614
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5615
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5616
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5617
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5618
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5619
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5620
                         name: 'PseudoNameSpaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5621
                         layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5622
                         majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5623
                         minorKey: singleNameSpaceWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5624
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5625
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5626
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5627
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5628
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5629
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5630
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5631
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5632
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5633
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5634
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5635
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5636
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5637
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5638
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5639
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5640
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5641
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5642
                             aspect: nameSpaceListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5643
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5644
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5645
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5646
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5647
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5648
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5649
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5650
                             subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5651
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5652
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5653
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5654
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5655
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5656
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5657
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5658
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5659
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5660
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5661
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5662
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5663
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5664
                         layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5665
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5666
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5667
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5668
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5669
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5670
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5671
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5672
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5673
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5674
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5675
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5676
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5677
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5678
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5679
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5680
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5681
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5682
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5683
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5684
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5685
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5686
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5687
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5688
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5689
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5690
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5691
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5692
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5693
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5694
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5695
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5696
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5697
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5698
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5699
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5700
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5701
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5702
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5703
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5704
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5705
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5706
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5707
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5708
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5709
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5710
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5711
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5712
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5713
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5714
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5715
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5716
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5717
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5718
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5719
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5720
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5721
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5722
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5723
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5724
                                   callBack: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5725
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5726
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5727
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5728
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5729
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5730
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5731
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5732
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5733
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5734
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5735
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5736
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5737
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5738
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5739
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5740
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5741
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5742
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5743
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5744
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5745
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5746
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5747
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5748
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5749
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5750
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5751
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5752
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5753
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5754
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5755
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5756
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5757
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5758
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5759
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5760
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5761
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5762
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5763
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5764
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5765
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5766
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5767
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5768
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5769
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5770
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5771
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5772
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5773
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5774
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5775
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5776
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5777
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5778
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  5779
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5780
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5781
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5782
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5783
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5784
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5785
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5786
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5787
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5788
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5789
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5790
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5791
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5792
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5793
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5794
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5795
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5796
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5797
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5798
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5799
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5800
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5801
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5802
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5803
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5804
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5805
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5806
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5807
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5808
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5809
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5810
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5811
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5812
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5813
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5814
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5815
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5816
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5817
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5818
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5819
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5820
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5821
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5822
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5823
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5824
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5825
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5826
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5827
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5828
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5829
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5830
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5831
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5832
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5833
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5834
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5835
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5836
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5837
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5838
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5839
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5840
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5841
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5842
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5843
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5844
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5845
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5846
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5847
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5848
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5849
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5850
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5851
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5852
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5853
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5854
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5855
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5856
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5857
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5858
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5859
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5860
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5861
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5862
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5863
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5864
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5865
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5866
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5867
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5868
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5869
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5870
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5871
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5872
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5873
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5874
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5875
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5876
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5877
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5878
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5879
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5880
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5881
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5882
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5883
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5884
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5885
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5886
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5887
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5888
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5889
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5890
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5891
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5892
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5893
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5894
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5895
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5896
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5897
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5898
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5899
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5900
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5901
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5902
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5903
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5904
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5905
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5906
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5907
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5908
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5909
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5910
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5911
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5912
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5913
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5914
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5915
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5916
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5917
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5918
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5919
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5920
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5921
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5922
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5923
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5924
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5925
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5926
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5927
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5928
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5929
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5930
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5931
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5932
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5933
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5934
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5935
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5936
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5937
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5938
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5939
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5940
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5941
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5942
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5943
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5944
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5945
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5946
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5947
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5948
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5949
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5950
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5951
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5952
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5953
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5954
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5955
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5956
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5957
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5958
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5959
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5960
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5961
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5962
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5963
             handles: (Any 0.333333 0.666667 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5964
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5965
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5966
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5967
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5968
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5969
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5970
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5971
singleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5972
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5973
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5974
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5975
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5976
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5977
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5978
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5979
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5980
     Tools::NavigatorCanvas new openInterface:#singleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5981
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5982
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5983
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5984
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5985
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5986
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5987
       name: singleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5988
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5989
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5990
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5991
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5992
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5993
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5994
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5995
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5996
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5997
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5998
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5999
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6000
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6001
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6002
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6003
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6004
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6005
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6006
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6007
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6008
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6009
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6010
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6011
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6012
                         name: 'PseudoNameSpaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6013
                         layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6014
                         majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6015
                         minorKey: singleNameSpaceWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6016
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6017
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6018
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6019
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6020
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6021
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6022
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6023
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6024
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6025
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6026
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6027
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6028
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6029
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6030
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6031
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6032
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6033
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6034
                             aspect: nameSpaceListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6035
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6036
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6037
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6038
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6039
                             aspect: classListPerNameSpaceGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6040
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6041
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6042
                             subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6043
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6044
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6045
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6046
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6047
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6048
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6049
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6050
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6051
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6052
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6053
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6054
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6055
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6056
                         layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6057
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6058
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6059
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6060
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6061
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6062
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6063
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6064
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6065
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6066
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6067
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6068
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6069
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6070
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6071
                             subAspect: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6072
                             aspect: forceClassCategoryGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6073
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6074
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6075
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6076
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6077
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6078
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6079
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6080
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6081
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6082
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6083
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6084
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6085
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6086
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6087
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6088
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6089
                             subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6090
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6091
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6092
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6093
                             subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6094
                             aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6095
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6096
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6097
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6098
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6099
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6100
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6101
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6102
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6103
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6104
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6105
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6106
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6107
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6108
                             aspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6109
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6110
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6111
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6112
                             aspect: categoryListSlaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6113
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6114
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6115
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6116
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6117
                             aspect: classCategoryListUpdateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6118
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6119
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6120
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6121
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6122
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6123
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6124
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6125
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6126
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6127
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6128
                   name: 'Box2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6129
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6130
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6131
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6132
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6133
                         name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6134
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6135
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6136
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6137
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6138
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6139
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6140
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6141
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6142
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6143
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6144
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6145
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6146
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6147
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6148
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6149
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6150
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6151
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6152
                                   subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6153
                                   aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6154
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6155
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6156
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6157
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6158
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6159
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6160
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6161
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6162
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6163
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6164
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6165
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6166
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6167
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6168
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6169
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6170
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6171
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6172
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6173
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6174
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6175
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6176
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6177
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6178
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6179
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6180
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6181
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6182
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6183
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6184
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6185
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6186
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6187
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6188
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6189
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6190
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6191
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6192
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6193
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6194
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6195
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6196
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6197
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6198
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6199
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6200
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6201
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6202
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6203
                                   callBack: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6204
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6205
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6206
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6207
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6208
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6209
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6210
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6211
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6212
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6213
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6214
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6215
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6216
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6217
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6218
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6219
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6220
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6221
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6222
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6223
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6224
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6225
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6226
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6227
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6228
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6229
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6230
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6231
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6232
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6233
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6234
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6235
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6236
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6237
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6238
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6239
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6240
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6241
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6242
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6243
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6244
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  6245
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6246
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6247
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6248
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6249
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6250
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6251
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6252
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6253
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6254
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6255
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6256
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6257
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6258
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6259
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6260
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6261
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6262
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6263
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6264
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6265
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6266
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6267
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6268
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6269
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6270
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6271
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6272
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6273
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6274
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6275
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6276
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6277
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6278
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6279
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6280
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6281
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6282
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6283
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6284
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6285
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6286
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6287
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6288
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6289
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6290
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6291
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6292
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6293
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6294
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6295
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6296
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6297
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6298
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6299
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6300
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6301
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6302
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6303
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6304
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6305
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6306
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6307
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6308
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6309
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6310
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6311
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6312
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6313
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6314
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6315
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6316
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6317
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6318
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6319
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6320
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6321
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6322
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6323
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6324
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6325
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6326
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6327
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6328
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6329
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6330
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6331
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6332
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6333
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6334
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6335
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6336
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6337
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6338
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6339
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6340
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6341
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6342
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6343
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6344
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6345
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6346
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6347
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6348
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6349
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6350
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6351
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6352
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6353
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6354
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6355
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6356
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6357
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6358
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6359
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6360
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6361
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6362
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6363
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6364
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6365
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6366
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6367
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6368
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6369
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6370
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6371
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6372
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6373
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6374
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6375
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6376
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6377
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6378
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6379
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6380
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6381
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6382
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6383
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6384
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6385
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6386
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6387
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6388
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6389
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6390
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6391
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6392
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6393
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6394
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6395
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6396
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6397
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6398
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6399
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6400
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6401
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6402
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6403
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6404
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6405
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6406
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6407
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6408
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6409
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6410
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6411
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6412
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6413
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6414
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6415
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6416
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6417
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6418
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6419
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6420
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6421
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6422
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6423
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6424
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6425
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6426
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6427
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6428
             handles: (Any 0.25 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6429
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6430
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6431
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6432
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6433
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6434
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6435
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6436
singleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6437
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6438
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6439
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6440
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6441
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6442
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6443
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6444
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6445
     Tools::NavigatorCanvas new openInterface:#singleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6446
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6447
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6448
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6449
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6450
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6451
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6452
       name: singleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6453
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6454
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6455
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6456
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6457
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6458
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6459
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6460
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6461
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6462
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6463
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6464
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6465
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6466
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6467
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6468
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6469
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6470
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6471
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6472
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6473
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6474
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6475
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6476
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6477
                         name: 'PseudoProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6478
                         layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6479
                         majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6480
                         minorKey: singleProjectWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6481
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6482
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6483
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6484
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6485
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6486
                             aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6487
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6488
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6489
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6490
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6491
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6492
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6493
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6494
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6495
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6496
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6497
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6498
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6499
                             aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6500
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6501
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6502
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6503
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6504
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6505
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6506
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6507
                             subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6508
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6509
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6510
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6511
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6512
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6513
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6514
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6515
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6516
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6517
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6518
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6519
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6520
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6521
                         layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6522
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6523
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6524
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6525
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6526
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6527
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6528
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6529
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6530
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6531
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6532
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6533
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6534
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6535
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6536
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6537
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6538
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6539
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6540
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6541
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6542
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6543
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6544
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6545
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6546
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6547
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6548
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6549
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6550
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6551
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6552
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6553
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6554
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6555
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6556
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6557
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6558
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6559
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6560
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6561
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6562
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6563
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6564
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6565
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6566
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6567
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6568
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6569
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6570
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6571
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6572
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6573
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6574
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6575
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6576
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6577
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6578
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6579
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6580
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6581
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6582
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6583
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6584
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6585
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6586
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6587
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6588
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6589
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6590
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6591
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6592
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6593
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6594
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6595
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6596
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6597
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6598
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6599
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6600
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6601
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6602
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6603
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6604
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6605
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6606
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6607
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6608
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6609
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6610
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6611
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6612
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6613
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6614
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6615
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6616
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6617
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6618
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6619
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6620
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6621
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6622
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6623
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6624
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6625
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6626
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6627
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6628
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6629
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6630
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6631
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6632
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6633
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6634
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6635
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  6636
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6637
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6638
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6639
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6640
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6641
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6642
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6643
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6644
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6645
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6646
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6647
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6648
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6649
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6650
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6651
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6652
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6653
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6654
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6655
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6656
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6657
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6658
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6659
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6660
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6661
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6662
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6663
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6664
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6665
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6666
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6667
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6668
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6669
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6670
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6671
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6672
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6673
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6674
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6675
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6676
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6677
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6678
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6679
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6680
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6681
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6682
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6683
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6684
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6685
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6686
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6687
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6688
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6689
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6690
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6691
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6692
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6693
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6694
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6695
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6696
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6697
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6698
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6699
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6700
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6701
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6702
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6703
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6704
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6705
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6706
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6707
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6708
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6709
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6710
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6711
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6712
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6713
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6714
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6715
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6716
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6717
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6718
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6719
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6720
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6721
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6722
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6723
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6724
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6725
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6726
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6727
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6728
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6729
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6730
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6731
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6732
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6733
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6734
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6735
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6736
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6737
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6738
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6739
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6740
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6741
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6742
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6743
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6744
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6745
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6746
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6747
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6748
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6749
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6750
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6751
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6752
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6753
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6754
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6755
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6756
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6757
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6758
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6759
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6760
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6761
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6762
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6763
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6764
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6765
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6766
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6767
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6768
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6769
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6770
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6771
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6772
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6773
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6774
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6775
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6776
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6777
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6778
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6779
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6780
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6781
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6782
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6783
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6784
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6785
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6786
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6787
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6788
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6789
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6790
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6791
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6792
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6793
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6794
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6795
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6796
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6797
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6798
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6799
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6800
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6801
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6802
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6803
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6804
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6805
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6806
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6807
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6808
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6809
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6810
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6811
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6812
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6813
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6814
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6815
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6816
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6817
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6818
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6819
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6820
             handles: (Any 0.333333 0.666667 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6821
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6822
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6823
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6824
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6825
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6826
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6827
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6828
singleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6829
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6830
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6831
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6832
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6833
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6834
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6835
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6836
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6837
     Tools::NavigatorCanvas new openInterface:#singleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6838
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6839
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6840
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6841
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6842
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6843
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6844
       name: singleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6845
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6846
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6847
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6848
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6849
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6850
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6851
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6852
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6853
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6854
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6855
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6856
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6857
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6858
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6859
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6860
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6861
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6862
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6863
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6864
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6865
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6866
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6867
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6868
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6869
                         name: 'PseudoProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6870
                         layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6871
                         majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6872
                         minorKey: singleProjectWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6873
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6874
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6875
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6876
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6877
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6878
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6879
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6880
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6881
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6882
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6883
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6884
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6885
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6886
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6887
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6888
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6889
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6890
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6891
                             aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6892
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6893
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6894
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6895
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6896
                             aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6897
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6898
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6899
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6900
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6901
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6902
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6903
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6904
                             subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6905
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6906
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6907
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6908
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6909
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6910
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6911
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6912
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6913
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6914
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6915
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6916
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6917
                         layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6918
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6919
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6920
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6921
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6922
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6923
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6924
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6925
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6926
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6927
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6928
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6929
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6930
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6931
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6932
                             subAspect: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6933
                             aspect: forceClassCategoryGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6934
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6935
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6936
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6937
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6938
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6939
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6940
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6941
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6942
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6943
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6944
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6945
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6946
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6947
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6948
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6949
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6950
                             subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6951
                             aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6952
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6953
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6954
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6955
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6956
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6957
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6958
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6959
                             subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6960
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6961
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6962
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6963
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6964
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6965
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6966
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6967
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6968
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6969
                             aspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6970
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6971
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6972
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6973
                             aspect: categoryListSlaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6974
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6975
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6976
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6977
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6978
                             aspect: classCategoryListUpdateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6979
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6980
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6981
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6982
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6983
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6984
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6985
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6986
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6987
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6988
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6989
                   name: 'Box2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6990
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6991
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6992
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6993
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6994
                         name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6995
                         layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6996
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6997
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6998
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6999
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7000
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7001
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7002
                            (SubCanvasSpec
15250
46226edf92ef class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15120
diff changeset
  7003
                               name: 'ClassList'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7004
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7005
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7006
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7007
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7008
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7009
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7010
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7011
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7012
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7013
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7014
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7015
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7016
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7017
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7018
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7019
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7020
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7021
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7022
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7023
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7024
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7025
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7026
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7027
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7028
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7029
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7030
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7031
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7032
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7033
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7034
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7035
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7036
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7037
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7038
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7039
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7040
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7041
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7042
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7043
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7044
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7045
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7046
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7047
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7048
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7049
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7050
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7051
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7052
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7053
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7054
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7055
                                   aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7056
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7057
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7058
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7059
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7060
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7061
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7062
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7063
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7064
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7065
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7066
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7067
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7068
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7069
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7070
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7071
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7072
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7073
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7074
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7075
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7076
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7077
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7078
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7079
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7080
                            (SubCanvasSpec
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  7081
                               name: 'VariableList'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7082
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7083
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7084
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7085
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7086
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7087
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7088
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7089
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7090
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7091
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7092
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7093
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7094
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7095
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7096
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7097
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7098
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7099
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7100
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7101
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7102
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7103
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7104
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7105
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7106
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7107
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7108
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7109
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  7110
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7111
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7112
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7113
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7114
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7115
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7116
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7117
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7118
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7119
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7120
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7121
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7122
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7123
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7124
                         handles: (Any 0.5 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7125
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7126
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7127
                         name: 'SubSpecification1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7128
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7129
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7130
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7131
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7132
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7133
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7134
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7135
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7136
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7137
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7138
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7139
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7140
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7141
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7142
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7143
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7144
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7145
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7146
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7147
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7148
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7149
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7150
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7151
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7152
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7153
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7154
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7155
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7156
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7157
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7158
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7159
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7160
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7161
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7162
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7163
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7164
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7165
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7166
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7167
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7168
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7169
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7170
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7171
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7172
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7173
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7174
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7175
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7176
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7177
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7178
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7179
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7180
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7181
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7182
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7183
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7184
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7185
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7186
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7187
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7188
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7189
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7190
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7191
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7192
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7193
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7194
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7195
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7196
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7197
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7198
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7199
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7200
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7201
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7202
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7203
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7204
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7205
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7206
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7207
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7208
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7209
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7210
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7211
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7212
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7213
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7214
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7215
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7216
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7217
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7218
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7219
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7220
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7221
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7222
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7223
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7224
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7225
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7226
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7227
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7228
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7229
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7230
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7231
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7232
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7233
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7234
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7235
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7236
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7237
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7238
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7239
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7240
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7241
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7242
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7243
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7244
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7245
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7246
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7247
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7248
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7249
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7250
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7251
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7252
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7253
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7254
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7255
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7256
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7257
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7258
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7259
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7260
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7261
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7262
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7263
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7264
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7265
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7266
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7267
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7268
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7269
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7270
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7271
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7272
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7273
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7274
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7275
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7276
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7277
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7278
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7279
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7280
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7281
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7282
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7283
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7284
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7285
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7286
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7287
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7288
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7289
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7290
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7291
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7292
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7293
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7294
             handles: (Any 0.25 0.5 0.75 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7295
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7296
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7297
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7298
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7299
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7300
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7301
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7302
singleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7303
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7304
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7305
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7306
    "Do not manually edit this!! If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7307
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7308
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7309
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7310
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7311
     Tools::NavigatorCanvas new openInterface:#singleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7312
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7313
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7314
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7315
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7316
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7317
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7318
       name: singleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7319
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7320
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7321
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7322
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7323
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7324
         bounds: (Rectangle 0 0 462 300)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7325
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7326
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7327
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7328
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7329
          (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7330
             name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7331
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7332
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7333
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7334
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7335
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7336
                   name: 'PseudoProtocolList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7337
                   layout: (LayoutFrame 0 0.0 0 0 0 1.0 25 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7338
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7339
                   minorKey: singleProtocolWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7340
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7341
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7342
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7343
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7344
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7345
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7346
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7347
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7348
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7349
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7350
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7351
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7352
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7353
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7354
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7355
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7356
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7357
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7358
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7359
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7360
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7361
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7362
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7363
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7364
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7365
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7366
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7367
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7368
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7369
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7370
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7371
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7372
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7373
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7374
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7375
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7376
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7377
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7378
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7379
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7380
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7381
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7382
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7383
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7384
                   layout: (LayoutFrame 0 0.0 25 0.0 0 1.0 0 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7385
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7386
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7387
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7388
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7389
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7390
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7391
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7392
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7393
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7394
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7395
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7396
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7397
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7398
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7399
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7400
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7401
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7402
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7403
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7404
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7405
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7406
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7407
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7408
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7409
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7410
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7411
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7412
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7413
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7414
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7415
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7416
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7417
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7418
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7419
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7420
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7421
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7422
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7423
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7424
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7425
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7426
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7427
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7428
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7429
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7430
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7431
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7432
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7433
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7434
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7435
                       subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7436
                       aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7437
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7438
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7439
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7440
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7441
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7442
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7443
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7444
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7445
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7446
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7447
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7448
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7449
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7450
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7451
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7452
windowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7453
    ^ self fullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7454
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7455
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7456
!NavigatorCanvas class methodsFor:'misc'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7457
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7458
classResources
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7459
    ^ NewSystemBrowser classResources
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7460
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7461
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7462
!NavigatorCanvas class methodsFor:'plugIn spec'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7463
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7464
aspectSelectors
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7465
    "This resource specification was automatically generated
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7466
     by the UIPainter of ST/X."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7467
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7468
    "Do not manually edit this. If it is corrupted,
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7469
     the UIPainter may not be able to read the specification."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7470
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7471
    "Return a description of exported aspects;
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7472
     these can be connected to aspects of an embedding application
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7473
     (if this app is embedded in a subCanvas)."
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7474
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7475
    ^ #(
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7476
        #environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7477
      ).
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7478
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7479
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7480
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7481
!NavigatorCanvas methodsFor:'accessing'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7482
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7483
initialOrganizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7484
    ^ nil  "/ dummy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7485
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7486
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7487
!NavigatorCanvas methodsFor:'actions'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7488
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7489
classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7490
    self subclassResponsibility
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7491
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7492
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7493
!NavigatorCanvas methodsFor:'queries'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7494
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7495
showAllClassesInNameSpaceOrganisation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7496
    ^ true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7497
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7498
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7499
!NavigatorCanvas class methodsFor:'documentation'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7500
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7501
version_CVS
15441
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  7502
    ^ '$Header: /cvs/stx/stx/libtool/Tools__NavigatorCanvas.st,v 1.26 2015-02-27 00:02:09 cg Exp $'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7503
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7504