Tools__NavigatorCanvas.st
author Jan Vrany <jan.vrany@labware.com>
Sat, 30 Sep 2023 22:55:25 +0100
branchjv
changeset 19648 5df52d354504
parent 16573 2f5cd8950dcf
permissions -rw-r--r--
`TestRunner2`: do not use `#keysAndValuesCollect:` ...as semantics differ among smalltalk dialects. This is normally not a problem until we use code that adds this as a "compatibility" method. So to stay on a safe side, avoid using this method.
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
                     )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   630
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   631
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   632
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   633
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   634
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   635
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   636
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   637
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   638
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   639
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   640
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   641
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   642
                  (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   646
                       callBack: protocolDoubleClicked
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   649
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   650
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   651
                     )
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: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   655
                       aspect: filterClassVars
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   658
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   659
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   660
                     )
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: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   664
                       aspect: protocolListGenerator
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   667
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   668
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   669
                     )
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: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   673
                       aspect: methodVisibilityHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   676
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   677
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   678
                     )
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   682
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   683
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   684
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   685
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   686
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   687
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   688
                     )
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   692
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   695
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   696
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   697
                     )
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: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   701
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   702
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   703
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   704
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   705
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   706
                       callBack: variableSelectionChanged
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
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   709
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   710
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   711
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   712
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   713
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   714
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   715
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   716
                  (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   720
                       callBack: methodDoubleClicked
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   723
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   724
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   725
                     )
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: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   729
                       aspect: filterClassVars
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   732
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   733
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   734
                     )
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: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   738
                       aspect: selectorListGenerator
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   741
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   742
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   743
                     )
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   747
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   748
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   749
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   750
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   751
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   752
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   753
                     )
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   757
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   760
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   761
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   762
                     )
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: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   766
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   769
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   770
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   771
                     )
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: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   775
                       aspect: showMethodTypeIcon
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   778
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   779
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   780
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   781
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   782
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   783
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   784
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   785
                       callBack: variableSelectionChanged
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   789
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   790
                 )
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
             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
   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
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   799
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   800
!
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
fullBrowserSpecWithEmbeddedTestRunner
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   803
    "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
   804
     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
   805
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   806
    "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
   807
     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
   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
     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
   811
     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
   812
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   813
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   814
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   815
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   816
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   817
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   818
       name: fullBrowserSpecWithEmbeddedTestRunner
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   819
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   820
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   821
         label: 'SystemBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   822
         name: 'SystemBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   823
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   824
         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
   825
         icon: defaultIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   826
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   827
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   828
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   829
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   830
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   831
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   832
             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
   833
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   834
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   835
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   836
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   837
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   838
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   839
                   name: 'Organizer'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   840
                   majorKey: OrganizerCanvas
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   841
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   842
                  (Array
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: classCategoryDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   846
                       callBack: classCategoryDoubleClicked
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   849
                       subAspect: classCategoryListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   850
                       aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   851
                     )
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: classDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   855
                       callBack: classDoubleClicked
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   858
                       subAspect: classHierarchyListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   859
                       aspect: hierarchyPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   860
                     )
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: classHierarchyTopClass
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   864
                       aspect: classHierarchyTopClass
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   867
                       subAspect: classListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   868
                       aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   869
                     )
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   873
                       aspect: environmentHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   876
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   877
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   878
                     )
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: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   882
                       aspect: hideUnloadedClasses
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   885
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   886
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   887
                     )
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: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   891
                       aspect: markApplicationsHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   894
                       subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   895
                       aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   896
                     )
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: metaToggleLabelHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   900
                       aspect: metaToggleLabelHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   903
                       subAspect: nameSpaceDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   904
                       callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   905
                     )
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: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   909
                       aspect: nameSpaceFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   912
                       subAspect: nameSpaceListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   913
                       aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   914
                     )
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: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   918
                       aspect: organizerMode
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   921
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   922
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   923
                     )
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   927
                       aspect: packageFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   930
                       subAspect: projectDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   931
                       callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   932
                     )
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: projectListMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   936
                       aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   937
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   938
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   939
                       subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   940
                       aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   941
                       callBack: categorySelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   942
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   943
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   944
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   945
                       subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   946
                       aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   947
                       callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   948
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   949
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   950
                       subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   951
                       aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   952
                       callBack: nameSpaceSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   953
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   954
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   955
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   956
                       subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   957
                       aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   958
                       callBack: projectSelectionChanged
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   961
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   962
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   963
                     )
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: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   967
                       aspect: showClassPackages
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   970
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   971
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   972
                     )
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: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   976
                       aspect: sortByNameAndInheritance
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   979
                       subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   980
                       aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   981
                     )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   982
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   983
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   984
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
   985
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   986
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   987
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   988
                       subAspect: variableDoubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   989
                       callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   990
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   991
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   992
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   993
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   994
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   995
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   998
                       subAspect: variablesMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   999
                       aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1000
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1001
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1002
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1003
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1004
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1005
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1006
                   name: 'CategoryAndMethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1007
                   hasHorizontalScrollBar: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1008
                   hasVerticalScrollBar: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1009
                   majorKey: #'Tools::NavigatorCanvas'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1010
                   minorKey: protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1011
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1012
                  (Array
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1015
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1016
                       aspect: environmentHolder
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
                   createNewBuilder: false
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
             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
  1025
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1026
          )
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
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1029
     )
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
multipleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1033
    "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
  1034
     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
  1035
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1036
    "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
  1037
     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
  1038
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1039
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1040
     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
  1041
     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
  1042
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1043
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1044
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1045
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1046
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1047
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1048
       name: multipleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1049
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1050
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1051
         label: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1052
         name: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1053
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1054
         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
  1055
       )
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
          (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1060
             name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1061
             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
  1062
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1063
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1064
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1065
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1066
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1067
                (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1068
                   name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1069
                   barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1070
                   showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1071
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1072
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1073
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1074
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1075
                         name: 'CategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1076
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1077
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1078
                        (Array
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1081
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1082
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1083
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1084
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1085
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1086
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1087
                           )
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1090
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1091
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1092
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1093
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1094
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1095
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1096
                           )
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1099
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1100
                             aspect: categoryListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1101
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1102
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1103
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1104
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1105
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1106
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1107
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1108
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1109
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1110
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1111
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1112
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1113
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1114
                             callBack: categorySelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1115
                           )
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1118
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1119
                             aspect: selectionChangeConditionHolder
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1122
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1123
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1124
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1125
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1126
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1127
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1128
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1129
                      (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1130
                         name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1131
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1132
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1133
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1134
                            (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1135
                               name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1136
                               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
  1137
                               showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1138
                               snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1139
                               handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1140
                               component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1141
                              (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1142
                                 collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1143
                                  (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1144
                                     name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1145
                                     majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1146
                                     subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1147
                                    (Array
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1150
                                         subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1151
                                         callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1152
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1153
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1154
                                         subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1155
                                         aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1156
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1159
                                         subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1160
                                         aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1161
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1162
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1163
                                         subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1164
                                         aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1165
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1168
                                         subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1169
                                         aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1170
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1171
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1172
                                         subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1173
                                         aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1174
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1177
                                         subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1178
                                         aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1179
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1180
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1181
                                         subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1182
                                         aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1183
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1186
                                         subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1187
                                         aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1188
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1189
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1190
                                         subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1191
                                         aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1192
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1193
                                       
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1194
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1195
                                         subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1196
                                         aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1197
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1198
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1199
                                         subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1200
                                         aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1201
                                         callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1202
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1205
                                         subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1206
                                         aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1207
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1208
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1209
                                         subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1210
                                         aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1211
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1214
                                         subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1215
                                         aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1216
                                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1217
                                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1218
                                     createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1219
                                     createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1220
                                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1221
                                  (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1222
                                     name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1223
                                     majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1224
                                     subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1225
                                    (Array
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1228
                                         subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1229
                                         aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1230
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1231
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1232
                                         subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1233
                                         callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1234
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1237
                                         subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1238
                                         aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1239
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1240
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1241
                                         subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1242
                                         aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1243
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1246
                                         subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1247
                                         aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1248
                                       ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1249
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1250
                                         subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1251
                                         aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1252
                                       )
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
                                      (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1255
                                         subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1256
                                         aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1257
                                       )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1258
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1259
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1260
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1261
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1262
                                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1263
                                     createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1264
                                     createNewBuilder: true
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
                               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
  1270
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1271
                            (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1272
                               name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1273
                               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
  1274
                               majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1275
                               minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1276
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1277
                            )
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1280
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1281
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1282
                         name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1283
                         majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1284
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1285
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1286
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1287
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1288
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1289
                             callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1290
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1291
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1292
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1293
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1294
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1295
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1296
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1297
                             subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1298
                             aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1299
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1300
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1301
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1302
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1303
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1304
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1305
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1306
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1307
                             aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1308
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1309
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1310
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1311
                             aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1312
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1313
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1314
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1315
                             subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1316
                             aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1317
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1318
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1319
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1320
                             aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1321
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1322
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1323
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1324
                             subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1325
                             aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1326
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1327
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1328
                             subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1329
                             aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1330
                             callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1331
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1332
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1333
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1334
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1335
                             aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1336
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1337
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1338
                             subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1339
                             aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1340
                           )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1341
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1342
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1343
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1344
               ) 
14730
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1347
                             subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1348
                             aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1349
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1350
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1351
                             subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1352
                             aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1353
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1354
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1355
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1356
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1357
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1358
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1359
                         name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1360
                         majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1361
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1362
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1363
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1364
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1365
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1366
                             callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1367
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1368
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1369
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1370
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1371
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1372
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1373
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1374
                             subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1375
                             aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1376
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1377
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1378
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1379
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1380
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1381
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1382
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1383
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1384
                             aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1385
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1386
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1387
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1388
                             aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1389
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1390
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1391
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1392
                             subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1393
                             aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1394
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1395
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1396
                             subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1397
                             aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1398
                             callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1399
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1400
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1401
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1402
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1403
                             aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1404
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1405
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1406
                             subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1407
                             aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1408
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1409
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1410
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1411
                             subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1412
                             aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1413
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1414
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1415
                             subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1416
                             aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1417
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1418
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1419
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1420
                             subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1421
                             aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1422
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1423
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1424
                             subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1425
                             aspect: showSyntheticMethods
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1428
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1429
                             subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1430
                             aspect: variableFilter
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1433
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1434
                         createNewBuilder: true
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
                   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
  1440
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1441
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1442
              
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
             handles: (Any 1.0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1445
           )
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
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1449
     )
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
multipleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1453
    "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
  1454
     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
  1455
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1456
    "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
  1457
     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
  1458
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1459
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1460
     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
  1461
     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
  1462
    "
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
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1465
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1466
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1467
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1468
       name: multipleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1469
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1470
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1471
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1472
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1473
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1474
         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
  1475
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1476
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1477
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1478
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1479
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1480
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1481
             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
  1482
             barWidth: 2
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
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1485
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1486
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1487
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1488
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1489
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1490
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1491
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1492
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1493
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1494
                         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
  1495
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1496
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1497
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1498
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1499
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1500
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1501
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1502
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1503
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1504
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1505
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1506
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1507
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1508
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1509
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1510
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1511
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1512
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1513
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1514
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1515
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1516
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1517
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1518
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1519
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1520
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1521
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1522
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1523
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1524
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1525
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1526
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1527
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1528
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1529
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1530
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1531
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1532
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1533
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1534
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1535
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1536
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1537
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1538
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1539
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1540
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1541
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1542
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1543
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1544
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1545
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1546
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1547
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1548
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1549
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1550
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1551
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1552
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1553
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1554
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1555
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1556
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1557
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1558
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1559
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1560
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1561
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1562
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1563
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1564
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1565
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1566
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1567
                                   subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1568
                                   aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1569
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1570
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1571
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1572
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1573
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1574
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1575
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1576
                                   subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1577
                                   aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1578
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1579
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1580
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1581
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1582
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1583
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1584
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1585
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1586
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1587
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1588
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1589
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1590
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1591
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1592
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1593
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1594
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1595
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1596
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1597
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1598
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1599
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1600
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1601
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1602
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1603
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1604
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1605
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1606
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1607
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1608
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1609
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1610
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1611
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1612
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1613
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1614
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1615
                                 ) 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1616
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1617
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1618
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  1619
                                       )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1620
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1621
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1622
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1623
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1624
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1625
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1626
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1627
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  1628
                     )
14730
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1631
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1632
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1633
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1634
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1635
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1636
                         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
  1637
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1638
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1639
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1640
                         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
  1641
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1642
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1643
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1644
                      )
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
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1648
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1649
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1650
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1651
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1652
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1653
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1654
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1655
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1656
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1657
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1658
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1659
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1660
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1661
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1662
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1663
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1664
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1665
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1666
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1667
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1668
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1669
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1670
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1671
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1672
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1673
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1674
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1675
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1676
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1677
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1678
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1679
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1680
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1681
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1682
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1683
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1684
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1685
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1686
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1687
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1688
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1689
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1690
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1691
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1692
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1693
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1694
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1695
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1696
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1697
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1698
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1699
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1700
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1701
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1702
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1703
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1704
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1705
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1706
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1707
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1708
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1709
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1710
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  1711
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1712
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1713
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1714
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1715
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1716
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1717
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1718
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1719
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1720
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1721
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1722
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1723
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1724
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1725
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1726
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1727
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1728
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1729
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1730
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1731
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1732
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1733
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1734
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1735
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1736
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1737
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1738
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1739
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1740
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1741
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1742
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1743
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1744
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1745
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1746
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1747
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1748
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1749
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1750
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1751
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1752
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1753
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1754
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1755
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1756
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1757
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1758
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1759
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1760
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1761
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1762
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1763
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1764
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1765
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1766
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1767
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1768
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1769
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1770
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1771
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1772
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1773
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1774
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1775
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1776
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1777
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1778
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1779
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1780
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1781
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1782
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1783
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1784
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1785
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1786
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1787
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1788
                       aspect: showMethodTypeIcon
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1791
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1792
                       aspect: showSyntheticMethods
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1796
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1797
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1798
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1799
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1800
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1801
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1802
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1803
                )
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
             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
  1807
           )
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
       )
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
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1814
multipleClassDiffBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1815
    "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
  1816
     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
  1817
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1818
    "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
  1819
     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
  1820
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
     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
  1823
     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
  1824
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1825
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1826
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1827
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1828
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1829
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1830
       name: multipleClassDiffBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1831
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1832
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1833
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1834
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1835
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1836
         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
  1837
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1838
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1839
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1840
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1841
          (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1842
             name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1843
             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
  1844
             majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1845
             subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1846
            (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1847
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1848
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1849
                 subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1850
                 callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1851
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1852
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1853
                 subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1854
                 aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1855
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1856
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1857
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1858
                 subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1859
                 aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1860
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1861
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1862
                 subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1863
                 aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1864
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1865
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1866
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1867
                 subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1868
                 aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1869
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1870
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1871
                 subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1872
                 aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1873
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1874
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1875
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1876
                 subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1877
                 aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1878
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1879
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1880
                 subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1881
                 aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1882
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1883
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1884
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1885
                 subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1886
                 aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1887
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1888
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1889
                 subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1890
                 aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1891
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1892
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1893
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1894
                 subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1895
                 aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1896
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1897
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1898
                 subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1899
                 aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1900
                 callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1901
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1902
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1903
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1904
                 subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1905
                 aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1906
               ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1907
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1908
                 subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1909
                 aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1910
               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1911
               
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1912
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1913
                 subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1914
                 aspect: sortBy
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
              (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1917
                 subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1918
                 aspect: sortByNameAndInheritance
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
             createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1922
             createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1923
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1924
          (LabelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1925
             label: 'projectInfo'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1926
             name: 'Label1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1927
             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
  1928
             level: -1
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1929
             labelChannel: classesProjectInfoHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1930
             adjust: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1931
           )
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
       )
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
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1938
multipleClassExtensionBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1939
    "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
  1940
     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
  1941
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1942
    "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
  1943
     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
  1944
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
     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
  1947
     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
  1948
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1949
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1950
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1951
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1952
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1953
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1954
       name: multipleClassExtensionBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1955
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1956
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1957
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1958
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1959
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1960
         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
  1961
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1962
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1963
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1964
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1965
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1966
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1967
             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
  1968
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1969
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1970
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1971
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1972
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1973
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1974
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1975
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1976
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1977
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1978
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1979
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1980
                         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
  1981
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1982
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1983
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1984
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1985
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1986
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1987
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1988
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1989
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1990
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1991
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1992
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1993
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1994
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1995
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1996
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1997
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1998
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  1999
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2000
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2001
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2002
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2003
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2004
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2005
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2006
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2007
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2008
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2009
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2010
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2011
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2012
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2013
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2014
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2015
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2016
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2017
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2018
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2019
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2020
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2021
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2022
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2023
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2024
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2025
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2026
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2027
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2028
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2029
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2030
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2031
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2032
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2033
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2034
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2035
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2036
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2037
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2038
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2039
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2040
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2041
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2042
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2043
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2044
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2045
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2046
                                   subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2047
                                   aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2048
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2049
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2050
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2051
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2052
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2053
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2054
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2055
                                   subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2056
                                   aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2057
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2058
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2059
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2060
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2061
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2062
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2063
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2064
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2065
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2066
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2067
                               name: 'ProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2068
                               majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2069
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2070
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2071
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2072
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2073
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2074
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2075
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2076
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2077
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2078
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2079
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2080
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2081
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2082
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2083
                                   aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2084
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2085
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2086
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2087
                                   aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2088
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2089
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2090
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2091
                                   subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2092
                                   aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2093
                                   callBack: projectSelectionChangedForFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2094
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2095
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2096
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2097
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2098
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2099
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2100
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2101
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2102
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2103
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2104
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2105
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2106
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2107
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2108
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2109
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2110
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2111
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2112
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2113
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2114
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2115
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2116
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2117
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2118
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2119
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2120
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2121
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2122
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2123
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2124
                                   aspect: variableFilter
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
                                 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2127
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2128
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2129
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2130
                                       )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2131
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2132
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2133
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2134
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2135
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2136
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2137
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2138
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2139
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2140
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2141
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2142
                             )
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
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2145
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2146
                         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
  2147
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2148
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2149
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2150
                         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
  2151
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2152
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2153
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2154
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2155
                    
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
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2158
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2159
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2160
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2161
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2162
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2163
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2164
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2165
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2166
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2167
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2168
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2169
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2170
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2171
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2172
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2173
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2174
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2175
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2176
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2177
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2178
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2179
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2180
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2181
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2182
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2183
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2184
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2185
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2186
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2187
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2188
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2189
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2190
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2191
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2192
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2193
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2194
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2195
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2196
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2197
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2198
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2199
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2200
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2201
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2202
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2203
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2204
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2205
                       subAspect: packageFilterOnInput
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2206
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2207
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2208
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2209
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2210
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2211
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2212
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2213
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2214
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2215
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2216
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2217
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2218
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2219
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2220
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2221
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2222
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2223
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2224
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2225
                       aspect: showCoverageInformation
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: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2229
                       aspect: showPseudoProtocols
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2232
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2233
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2234
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2235
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2236
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2237
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2238
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2239
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2240
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2241
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2242
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2243
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2244
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2245
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2246
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2247
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2248
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2249
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2250
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2251
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2252
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2253
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2254
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2255
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2256
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2257
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2258
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2259
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2260
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2261
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2262
                       aspect: immediateUpdate
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2265
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2266
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2267
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2268
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2269
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2270
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2271
                       aspect: selectorPopUpMenu
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2274
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2275
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2276
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2277
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2278
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2279
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2280
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2281
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2282
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2283
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2284
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2285
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2286
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2287
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2288
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2289
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2290
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2291
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2292
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2293
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2294
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2295
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2298
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2299
                       aspect: showMethodInheritance
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2303
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2304
                       aspect: showMethodTypeIcon
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2307
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2308
                       aspect: showSyntheticMethods
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2312
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2313
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2314
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2315
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2316
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2317
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2318
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2319
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2320
                )
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
             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
  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
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2327
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2328
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2329
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2330
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2331
multipleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2332
    "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
  2333
     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
  2334
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2335
    "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
  2336
     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
  2337
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2338
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2339
     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
  2340
     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
  2341
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2342
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2343
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2344
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2345
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2346
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2347
       name: multipleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2348
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2349
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2350
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2351
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2352
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2353
         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
  2354
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2355
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2356
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2357
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2358
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2359
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2360
             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
  2361
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2362
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2363
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2364
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2365
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2366
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2367
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2368
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2369
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2370
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2371
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2372
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2373
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2374
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2375
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2376
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2377
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2378
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2379
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2380
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2381
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2382
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2383
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2384
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2385
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2386
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2387
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2388
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2389
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2390
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2391
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2392
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2393
                       subAspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2394
                       aspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2395
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2396
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2397
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2398
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2399
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2400
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2401
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2402
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2403
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2404
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2405
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2406
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2407
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2408
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2409
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2410
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2411
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2412
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2413
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2414
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2415
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2416
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2417
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2418
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2419
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2420
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2421
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2422
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2423
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2424
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2425
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2426
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2427
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2428
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2429
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2430
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2431
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2432
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2433
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2434
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2435
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2436
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2437
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2438
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2439
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2440
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2441
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2442
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2443
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2444
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2445
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2446
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2447
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2448
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2449
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2450
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2451
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2452
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2453
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2454
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2455
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2456
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2457
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2458
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2459
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2460
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2461
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2462
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2463
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2464
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2465
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2466
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2467
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2468
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2469
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2470
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2471
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2472
               ) 
14730
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2475
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2476
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2477
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2478
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2479
                       subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2480
                       aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2481
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2482
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2483
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2484
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2485
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2486
                )
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
             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
  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
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2493
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2494
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2495
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2496
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2497
multipleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2498
    "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
  2499
     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
  2500
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2501
    "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
  2502
     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
  2503
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2504
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2505
     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
  2506
     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
  2507
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2508
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2509
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2510
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2511
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2512
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2513
       name: multipleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2514
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2515
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2516
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2517
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2518
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2519
         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
  2520
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2521
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2522
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2523
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2524
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2525
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2526
             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
  2527
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2528
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2529
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2530
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2531
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2532
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2533
                   name: 'NamespaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2534
                   majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2535
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2536
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2537
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2538
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2539
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2540
                       callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2541
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2542
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2543
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2544
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2545
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2546
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2547
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2548
                       subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2549
                       aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2550
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2551
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2552
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2553
                       aspect: immediateUpdate
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2556
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2557
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2558
                       aspect: nameSpaceListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2559
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2560
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2561
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2562
                       aspect: nameSpacePopUpMenu
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2565
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2566
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2567
                       aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2568
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2569
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2570
                       subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2571
                       aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2572
                       callBack: nameSpaceSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2573
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2574
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2575
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2576
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2577
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2578
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2579
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2580
                       subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2581
                       aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2582
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2583
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2584
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2585
                   createNewBuilder: true
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
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2588
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2589
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2590
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2591
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2592
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2593
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2594
                         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
  2595
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2596
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2597
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2598
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2599
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2600
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2601
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2602
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2603
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2604
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2605
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2606
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2607
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2608
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2609
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2610
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2611
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2612
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2613
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2614
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2615
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2616
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2617
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2618
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2619
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2620
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2621
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2622
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2623
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2624
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2625
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2626
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2627
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2628
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2629
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2630
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2631
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2632
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2633
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2634
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2635
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2636
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2637
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2638
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2639
                                   subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2640
                                   aspect: selectedNamespaces
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2643
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2644
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2645
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2646
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2647
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2648
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2649
                                   aspect: protocolListGenerator
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2652
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2653
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2654
                                   aspect: packageFilter
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2657
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2658
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2659
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2660
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2661
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2662
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2663
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2664
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2665
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2666
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2667
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2668
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2669
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2670
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2671
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2672
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2673
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2674
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2675
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2676
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2677
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2678
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2679
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2680
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2681
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2682
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2683
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2684
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2685
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2686
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2687
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2688
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2689
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2690
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2691
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2692
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2693
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2694
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2695
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2696
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2697
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2698
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2699
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2700
                                   aspect: variablesPopUpMenu
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2704
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2705
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2706
                                 ) 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2707
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2708
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2709
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  2710
                                       )
14730
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2713
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2714
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2715
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2716
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2717
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2718
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  2719
                     )
14730
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2722
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2723
                             )
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
                          
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2726
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2727
                         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
  2728
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2729
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2730
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2731
                         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
  2732
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2733
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2734
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2735
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2736
                    
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2740
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2741
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2742
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2743
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2744
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2745
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2746
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2747
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2748
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2749
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2750
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2751
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2752
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2753
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2754
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2755
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2756
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2757
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2758
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2759
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2760
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2761
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2762
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2763
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2764
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2765
                       aspect: protocolListGenerator
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2769
                       aspect: protocolMenu
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2772
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2773
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2774
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2775
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2776
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2777
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2778
                       aspect: selectorListGenerator
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2781
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2782
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2783
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2784
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2785
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2786
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2787
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2788
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2789
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2790
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2791
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2792
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2793
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2794
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2795
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2796
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2797
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2798
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2799
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2800
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2801
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  2802
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2803
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2804
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2805
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2806
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2807
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2808
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2809
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2810
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2811
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2812
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2813
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2814
                   createNewBuilder: true
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2817
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2818
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2819
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2820
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2821
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2822
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2823
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2824
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2825
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2826
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2827
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2828
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2829
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2830
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2831
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2832
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2833
                       aspect: filterClassVars
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2837
                       aspect: immediateUpdate
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2840
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2841
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2842
                       aspect: selectorListGenerator
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2846
                       aspect: selectorPopUpMenu
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2849
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2850
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2851
                       aspect: packageFilter
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: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2855
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2856
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2857
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2858
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2859
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2860
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2861
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2862
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2863
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2864
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2865
                       aspect: showCoverageInformation
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2868
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2869
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2870
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2873
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2874
                       aspect: showMethodInheritance
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2878
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2879
                       aspect: showMethodTypeIcon
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2882
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2883
                       aspect: showSyntheticMethods
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2886
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2887
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2888
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2889
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2890
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2891
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2892
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2893
                 )
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
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2897
             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
  2898
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2899
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2900
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2901
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2902
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2903
!
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
multipleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2906
    "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
  2907
     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
  2908
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2909
    "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
  2910
     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
  2911
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2912
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2913
     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
  2914
     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
  2915
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2916
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2917
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2918
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2919
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2920
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2921
       name: multipleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2922
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2923
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2924
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2925
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2926
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2927
         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
  2928
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2929
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2930
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2931
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2932
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2933
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2934
             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
  2935
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2936
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2937
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2938
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2939
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2940
                (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2941
                   name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2942
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2943
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2944
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2945
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2946
                         name: 'NameSpaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2947
                         majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2948
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2949
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2950
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2951
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2952
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2953
                             callBack: nameSpaceDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2954
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2955
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2956
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2957
                             aspect: environmentHolder
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2960
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2961
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2962
                             aspect: hideUnloadedClasses
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2966
                             aspect: immediateUpdate
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2970
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2971
                             aspect: nameSpaceListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2972
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2973
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2974
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2975
                             aspect: nameSpacePopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2976
                           )
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: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2980
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2981
                             callBack: nameSpaceSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2982
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2983
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2984
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2985
                             aspect: selectionChangeConditionHolder
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2988
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2989
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2990
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2991
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2992
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2993
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2994
                         createNewBuilder: true
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
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2997
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2998
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  2999
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3000
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3001
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3002
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3003
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3004
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3005
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3006
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3007
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3008
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3009
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3010
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3011
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3012
                             subAspect: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3013
                             aspect: forceClassCategoryGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3014
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3015
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3016
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3017
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3018
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3019
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3020
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3021
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3022
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3023
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3024
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3025
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3026
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3027
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3028
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3029
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3030
                             subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3031
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3032
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3033
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3034
                             subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3035
                             aspect: organizerMode
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3038
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3039
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3040
                             aspect: classListGenerator
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3043
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3044
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3045
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3046
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3047
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3048
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3049
                             aspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3050
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3051
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3052
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3053
                             aspect: categoryListSlaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3054
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3055
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3056
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3057
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3058
                             aspect: classCategoryListUpdateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3059
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3060
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3061
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3062
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3063
                       )
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
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3066
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3067
                   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
  3068
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3069
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3070
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3071
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3072
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3073
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3074
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3075
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3076
                         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
  3077
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3078
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3079
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3080
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3081
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3082
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3083
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3084
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3085
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3086
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3087
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3088
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3089
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3090
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3091
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3092
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3093
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3094
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3095
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3096
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3097
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3098
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3099
                                   subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3100
                                   aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3101
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3102
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3103
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3104
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3105
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3106
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3107
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3108
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3109
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3110
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3111
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3112
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3113
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3114
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3115
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3116
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3117
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3118
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3119
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3120
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3121
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3122
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3123
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3124
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3125
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3126
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3127
                                   aspect: classListGenerator
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: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3131
                                   aspect: meta
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3135
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3136
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3137
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3138
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3139
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3140
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3141
                                 )
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3145
                                   aspect: packageFilter
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: selectedClasses
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
                                   callBack: classSelectionChanged
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3153
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3154
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3155
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3156
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3157
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3158
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3159
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3160
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3161
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3162
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3163
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3164
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3165
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3166
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3167
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3168
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3169
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3170
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3171
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3172
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3173
                                   aspect: selectedClasses
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3177
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3178
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3179
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3180
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3181
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3182
                                   aspect: variableFilter
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
                                 
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3185
                                      (SubChannelInfoSpec
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3186
                                         subAspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3187
                                         aspect: showClassVarsInVariableList
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3188
                                       )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3189
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3190
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3191
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3192
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3193
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3194
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3195
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3196
                     )
14730
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3199
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3200
                             )
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3204
                         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
  3205
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3206
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3207
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3208
                         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
  3209
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3210
                         minorKey: metaSpec
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
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3213
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3214
                   )
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3217
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3218
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3219
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3220
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3221
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3222
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3223
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3224
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3225
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3226
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3227
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3228
                       aspect: environmentHolder
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3231
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3232
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3233
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3234
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3235
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3236
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3237
                       aspect: immediateUpdate
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: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3242
                       aspect: protocolListGenerator
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3246
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3247
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3248
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3249
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3250
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3251
                       aspect: methodVisibilityHolder
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: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3255
                       aspect: selectorListGenerator
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3258
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3259
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3260
                       aspect: packageFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3263
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3264
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3265
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3266
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3267
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3268
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3269
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3270
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3271
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3272
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3273
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3274
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3275
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3276
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3277
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3278
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3279
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3280
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3281
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3282
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3283
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3284
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3285
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3286
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3287
                       aspect: variableFilter
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
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3290
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3291
                   createNewBuilder: true
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3294
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3295
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3296
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3297
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3298
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3299
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3300
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3301
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3302
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3303
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3304
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3305
                       aspect: environmentHolder
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: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3310
                       aspect: filterClassVars
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3314
                       aspect: immediateUpdate
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: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3319
                       aspect: selectorListGenerator
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3323
                       aspect: selectorPopUpMenu
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3328
                       aspect: packageFilter
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: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3332
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3333
                       callBack: methodsSelectionChanged
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3336
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3337
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3338
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3341
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3342
                       aspect: showCoverageInformation
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3346
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3347
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3350
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3351
                       aspect: showMethodInheritance
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3355
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3356
                       aspect: showMethodTypeIcon
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3359
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3360
                       aspect: showSyntheticMethods
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3363
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3364
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3365
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3366
                     )
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3369
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3370
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3371
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3372
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3373
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3374
             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
  3375
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3376
          )
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
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3379
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3380
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3381
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3382
multipleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3383
    "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
  3384
     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
  3385
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3386
    "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
  3387
     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
  3388
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3389
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3390
     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
  3391
     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
  3392
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3393
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3394
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3395
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3396
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3397
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3398
       name: multipleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3399
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3400
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3401
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3402
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3403
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3404
         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
  3405
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3406
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3407
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3408
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3409
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3410
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3411
             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
  3412
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3413
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3414
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3415
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3416
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3417
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3418
                   name: 'ProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3419
                   majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3420
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3421
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3422
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3423
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3424
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3425
                       callBack: projectDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3426
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3427
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3428
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3429
                       aspect: environmentHolder
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: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3434
                       aspect: hideUnloadedClasses
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3438
                       aspect: immediateUpdate
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3442
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3443
                       aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3444
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3445
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3446
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3447
                       aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3448
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3449
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3450
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3451
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3452
                       aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3453
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3454
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3455
                       subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3456
                       aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3457
                       callBack: projectSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3458
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3459
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3460
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3461
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3462
                       aspect: selectionChangeConditionHolder
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: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3466
                       aspect: showClassPackages
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
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3469
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3470
                   createNewBuilder: true
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
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3473
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3474
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3475
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3476
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3477
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3478
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3479
                         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
  3480
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3481
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3482
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3483
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3484
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3485
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3486
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3487
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3488
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3489
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3490
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3491
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3492
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3493
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3494
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3495
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3496
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3497
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3498
                                   aspect: environmentHolder
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3501
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3502
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3503
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3504
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3505
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3506
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3507
                                   aspect: immediateUpdate
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3510
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3511
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3512
                                   aspect: classListGenerator
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: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3516
                                   aspect: markApplicationsHolder
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: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3521
                                   aspect: meta
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: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3525
                                   aspect: organizerMode
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3529
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3530
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3531
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3532
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3533
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3534
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3535
                                 )
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: selectedClasses
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
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3541
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3542
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3543
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3544
                                   aspect: selectionChangeConditionHolder
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3547
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3548
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3549
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3550
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3551
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3552
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3553
                                   aspect: sortByNameAndInheritance
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
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3556
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3557
                               createNewBuilder: true
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
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3560
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3561
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3562
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3563
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3564
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3565
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3566
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3567
                                   aspect: selectedClasses
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3570
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3571
                                   callBack: variableDoubleClicked
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3575
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3576
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3577
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3578
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3579
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3580
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3581
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3584
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3585
                                   aspect: variableFilter
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3588
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  3589
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3590
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3591
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3592
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3593
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3594
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3595
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3596
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3597
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3598
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  3599
                     )
14730
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3602
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3603
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3604
                            )
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3607
                         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
  3608
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3609
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3610
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3611
                         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
  3612
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3613
                         minorKey: metaSpec
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
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3616
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3617
                   )
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3620
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3621
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3622
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3623
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3624
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3625
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3626
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3627
                       callBack: protocolDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3631
                       aspect: environmentHolder
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3634
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3635
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3636
                       aspect: filterClassVars
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3639
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3640
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3641
                     )
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: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3645
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3646
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3647
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3648
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3649
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3650
                     )
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: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3654
                       aspect: methodVisibilityHolder
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: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3658
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3659
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3662
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3663
                       aspect: packageFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3666
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3667
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3668
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3669
                     )
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3673
                       aspect: selectionChangeConditionHolder
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3677
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3678
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3679
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3680
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3681
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  3682
               ) 
14730
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: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3686
                       aspect: showPseudoProtocols
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3689
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3690
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3691
                       callBack: variableSelectionChanged
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
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3694
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3695
                   createNewBuilder: true
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3698
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3699
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3700
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3701
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3702
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3703
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3704
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3705
                       callBack: methodDoubleClicked
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3708
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3709
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3710
                     )
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: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3714
                       aspect: filterClassVars
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3717
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3718
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3719
                     )
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: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3723
                       aspect: selectorListGenerator
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3726
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3727
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3728
                     )
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3732
                       aspect: packageFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3735
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3736
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3737
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3738
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3741
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3742
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3745
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3746
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3747
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3750
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3751
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3754
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3755
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3756
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3757
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3758
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3759
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3760
                       aspect: showMethodTypeIcon
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3763
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3764
                       aspect: showSyntheticMethods
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3768
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3769
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3770
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3771
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3772
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3773
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3774
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3775
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3776
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3777
              
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
             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
  3780
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3781
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3782
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3783
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3784
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3785
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3786
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3787
multipleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3788
    "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
  3789
     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
  3790
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3791
    "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
  3792
     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
  3793
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3794
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3795
     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
  3796
     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
  3797
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3798
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3799
    <resource: #canvas>
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
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3802
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3803
       name: multipleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3804
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3805
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3806
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3807
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3808
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3809
         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
  3810
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3811
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3812
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3813
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3814
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3815
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3816
             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
  3817
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3818
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3819
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3820
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3821
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3822
                (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3823
                   name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3824
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3825
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3826
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3827
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3828
                         name: 'ProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3829
                         majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3830
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3831
                        (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3835
                             callBack: projectDoubleClicked
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3838
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3839
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3840
                           )
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3843
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3844
                             aspect: hideUnloadedClasses
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3847
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3848
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3849
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3850
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3851
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3852
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3853
                             aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3854
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3855
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3856
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3857
                             aspect: projectPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3858
                           )
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3861
                             subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3862
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3863
                             callBack: projectSelectionChanged
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3867
                             aspect: selectionChangeConditionHolder
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: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3872
                             aspect: showClassPackages
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3875
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3876
                         createNewBuilder: true
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
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3879
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3880
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3881
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3882
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3883
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3884
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3885
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3886
                             callBack: classCategoryDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3890
                             aspect: environmentHolder
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3893
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3894
                             subAspect: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3895
                             aspect: forceClassCategoryGeneratorTrigger
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: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3899
                             aspect: hideUnloadedClasses
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3902
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3903
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3904
                             aspect: immediateUpdate
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3908
                             aspect: categoryPopUpMenu
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3912
                             subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3913
                             aspect: organizerMode
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3916
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3917
                             aspect: classListGenerator
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3920
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3921
                             subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3922
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3923
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3924
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3925
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3926
                             aspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3927
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3928
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3929
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3930
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3931
                             aspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3932
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3933
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3934
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3935
                             aspect: categoryListSlaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3936
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3937
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3938
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3939
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3940
                             aspect: classCategoryListUpdateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3941
                           )
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
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3944
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3945
                       )
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
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3949
                   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
  3950
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3951
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3952
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3953
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3954
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3955
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3956
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3957
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3958
                         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
  3959
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3960
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3961
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3962
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3963
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3964
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3965
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3966
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3967
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3968
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3969
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3970
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3971
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3972
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3973
                                   callBack: classDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3977
                                   aspect: environmentHolder
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3980
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3981
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3982
                                   aspect: hideUnloadedClasses
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3986
                                   aspect: immediateUpdate
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3989
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3990
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3991
                                   aspect: classListGenerator
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3994
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3995
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  3996
                                 )
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4000
                                   aspect: classPopUpMenu
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4003
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4004
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4005
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4008
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4009
                                   aspect: organizerMode
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4012
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4013
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4014
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4015
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4016
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4017
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4018
                                   aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4019
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4020
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4021
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4022
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4023
                                   callBack: classSelectionChanged
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4028
                                   aspect: selectionChangeConditionHolder
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4032
                                   aspect: showCoverageInformation
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: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4037
                                   aspect: sortByNameAndInheritance
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
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4040
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4041
                               createNewBuilder: true
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
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4044
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4045
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4046
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4047
                              (Array
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4050
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4051
                                   aspect: selectedClasses
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4054
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4055
                                   callBack: variableDoubleClicked
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4058
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4059
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4060
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4061
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4062
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4063
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4064
                                   aspect: variablesPopUpMenu
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4068
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4069
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4070
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4071
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4072
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  4073
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4074
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4075
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4076
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4077
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4078
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4079
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4080
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4081
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4082
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4083
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4084
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4085
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4086
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4087
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4088
                            )
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
                         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
  4092
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4093
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4094
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4095
                         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
  4096
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4097
                         minorKey: metaSpec
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
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4101
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4102
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4103
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4104
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4105
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4106
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4107
                  (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4111
                       callBack: protocolDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4115
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4116
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4119
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4120
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4121
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4122
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4123
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4124
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4125
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4126
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4127
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4128
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4129
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4130
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4131
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4132
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4133
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4134
                     )
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: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4138
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4139
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4140
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4141
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4142
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4143
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4146
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4147
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4148
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4149
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4150
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4151
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4152
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4153
                     )
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4157
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4160
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4161
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4162
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4163
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4164
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4165
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4166
               ) 
14730
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4169
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4170
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4171
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4172
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4173
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4174
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4175
                       callBack: variableSelectionChanged
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4179
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4180
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4181
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4182
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4183
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4184
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4185
                  (Array
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4188
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4189
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4190
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4191
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4192
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4193
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4194
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4197
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4198
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4199
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4200
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4201
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4202
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4203
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4206
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4207
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4208
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4209
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4210
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4211
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4212
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4215
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4216
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4217
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4218
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4219
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4220
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4221
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4222
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4225
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4226
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4227
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4228
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4229
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4230
                       aspect: showCoverageInformation
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4234
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4235
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4236
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4237
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4238
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4239
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4240
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4243
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4244
                       aspect: showMethodTypeIcon
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4247
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4248
                       aspect: showSyntheticMethods
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4251
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4252
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4253
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4254
                       callBack: variableSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4255
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4256
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4257
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4258
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4259
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4260
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4261
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4262
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4263
             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
  4264
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4265
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4266
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4267
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4268
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4269
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4270
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4271
multipleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4272
    "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
  4273
     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
  4274
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4275
    "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
  4276
     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
  4277
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4278
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4279
     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
  4280
     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
  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
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4284
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4285
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4286
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4287
       name: multipleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4288
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4289
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4290
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4291
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4292
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4293
         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
  4294
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4295
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4296
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4297
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4298
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4299
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4300
             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
  4301
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4302
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4303
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4304
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4305
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4306
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4307
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4308
                  (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4312
                       callBack: protocolDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4316
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4317
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4318
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4319
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4320
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4321
                       aspect: immediateUpdate
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: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4325
                       aspect: protocolListGenerator
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4329
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4330
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4331
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4332
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4333
                       subAspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4334
                       aspect: noAllItem
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4335
                     )
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: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4339
                       aspect: selectorListGenerator
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4343
                       aspect: packageFilter
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: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4348
                       aspect: selectedProtocols
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4352
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4353
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4354
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4355
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4356
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4357
               ) 
14730
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4361
                       aspect: showCoverageInformation
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4365
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4366
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4367
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4368
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4369
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4370
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4371
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4372
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4373
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4374
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4375
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4376
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4377
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4378
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4379
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4380
                     )
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4384
                       aspect: immediateUpdate
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4387
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4388
                       aspect: selectorListGenerator
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4392
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4393
                       aspect: selectorPopUpMenu
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4396
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4397
                       aspect: packageFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4401
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4402
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4403
                       callBack: methodsSelectionChanged
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4406
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4407
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4408
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4409
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4410
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4411
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4412
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4413
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4414
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4415
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4416
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4417
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4418
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4419
                       subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4420
                       aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4421
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4422
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4423
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4424
                   createNewBuilder: true
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
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4427
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4428
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4429
             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
  4430
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4431
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4432
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4433
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4434
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4435
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4436
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4437
protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4438
    "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
  4439
     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
  4440
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4441
    "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
  4442
     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
  4443
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4444
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4445
     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
  4446
     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
  4447
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4448
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4449
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4450
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4451
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4452
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4453
       name: protocolAndMethodListSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4454
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4455
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4456
         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
  4457
         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
  4458
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4459
         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
  4460
         icon: defaultIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4461
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4462
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4463
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4464
         collection: (
15441
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4465
          (VerticalPanelViewSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4466
             name: 'VerticalPanel1'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4467
             layout: (LayoutFrame 0 0 0 0 0 1 0 1)
15441
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4468
             horizontalLayout: fit
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4469
             verticalLayout: bottomFit
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4470
             horizontalSpace: 3
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4471
             verticalSpace: 3
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4472
             component: 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4473
            (SpecCollection
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4474
               collection: (
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4475
                (SubCanvasSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4476
                   name: 'ProtocolAndMethodListCanvas'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4477
                   hasHorizontalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4478
                   hasVerticalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4479
                   majorKey: #'Tools::NavigatorCanvas'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4480
                   minorKey: #'protocolAndMethodListSpec_Both'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4481
                   specHolder: organizerProtocolAndMethodListSpecHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4482
                   subAspectHolders: 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4483
                  (Array
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: environmentHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4487
                       aspect: environmentHolder
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
                   createNewBuilder: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4491
                   extent: (Point 498 456)
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4492
                 )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4493
                (SubCanvasSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4494
                   name: 'TestRunnerEmbedded'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4495
                   initiallyInvisible: true
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4496
                   visibilityChannel: testRunnerVisibleHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4497
                   hasHorizontalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4498
                   hasVerticalScrollBar: false
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4499
                   majorKey: #'Tools::TestRunnerEmbedded'
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4500
                   subAspectHolders: 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4501
                  (Array
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4502
                     
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4503
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4504
                       subAspect: infoHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4505
                       aspect: infoLabelHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4506
                     ) 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4507
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4508
                       subAspect: methodGeneratorHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4509
                       aspect: selectorListGenerator
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4510
                     )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4511
                     
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4512
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4513
                       subAspect: selectedClassesHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4514
                       aspect: selectedClasses
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4515
                     ) 
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4516
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4517
                       subAspect: selectedMethodsHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4518
                       aspect: selectedMethods
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4519
                     )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4520
                     
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4521
                    (SubChannelInfoSpec
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4522
                       subAspect: selectedProtocolsHolder
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4523
                       aspect: selectedProtocols
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4524
                     )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4525
                   )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4526
                   createNewApplication: true
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4527
                   createNewBuilder: true
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4528
                   extent: (Point 498 50)
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4529
                 )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4530
                )
db99d6ea85ad class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15433
diff changeset
  4531
              
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4532
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4533
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4534
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4535
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4536
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4537
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4538
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4539
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4540
selectorBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4541
    "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
  4542
     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
  4543
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4544
    "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
  4545
     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
  4546
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4547
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4548
     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
  4549
     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
  4550
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4551
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4552
    <resource: #canvas>
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
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4555
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4556
       name: selectorBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4557
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4558
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4559
         label: 'SelectorBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4560
         name: 'SelectorBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4561
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4562
         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
  4563
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4564
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4565
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4566
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4567
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4568
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4569
             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
  4570
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4571
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4572
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4573
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4574
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4575
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4576
                   name: 'AllMethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4577
                   majorKey: FullMethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4578
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4579
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4580
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4581
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4582
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4583
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4584
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4585
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4586
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4587
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4588
                     )
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4592
                       aspect: immediateUpdate
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4595
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4596
                       aspect: protocolListGenerator
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4599
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4600
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4601
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4602
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4603
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4604
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4605
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4606
                     )
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4610
                       aspect: packageFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4613
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4614
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4615
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4616
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4617
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4618
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4619
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4620
               ) 
14730
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4624
                       aspect: selectionChangeConditionHolder
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4628
                       aspect: showCoverageInformation
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4632
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4633
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4634
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4635
                   name: 'ImplementedMethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4636
                   majorKey: ImplementingMethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4637
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4638
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4639
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4640
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4641
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4642
                       callBack: xxxDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4646
                       aspect: environmentHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4650
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4651
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4652
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4653
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4654
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4655
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4656
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4657
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4658
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4659
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4660
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4661
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4662
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4663
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4664
                       aspect: implementingClassListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4665
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4668
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4669
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4670
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4671
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4672
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4673
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4674
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4675
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4676
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4677
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  4678
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4679
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4680
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4681
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4682
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4683
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4684
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4685
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4686
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4687
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4688
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4689
                   name: 'ImplementingClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4690
                   majorKey: ImplementingClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4691
                   minorKey: windowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4692
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4693
                  (Array
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4696
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4697
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4698
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4699
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4700
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4701
                       aspect: environmentHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4705
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4706
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4707
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4708
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4709
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4710
                       aspect: implementingClassListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4711
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4714
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4715
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4716
                       callBack: methodsSelectionChanged
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4719
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4720
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4721
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4722
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4723
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4724
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4725
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4726
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4727
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4728
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4729
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4730
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4731
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4732
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4733
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4734
             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
  4735
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4736
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4737
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4738
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4739
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4740
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4741
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4742
singleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4743
    "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
  4744
     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
  4745
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4746
    "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
  4747
     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
  4748
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4749
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4750
     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
  4751
     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
  4752
    "
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
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4755
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4756
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4757
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4758
       name: singleCategoryBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4759
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4760
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4761
         label: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4762
         name: 'CategoryBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4763
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4764
         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
  4765
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4766
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4767
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4768
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4769
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4770
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4771
             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
  4772
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4773
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4774
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4775
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4776
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4777
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4778
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4779
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4780
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4781
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4782
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4783
                         name: 'PseudoCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4784
                         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
  4785
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4786
                         minorKey: singleCategoryWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4787
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4788
                        (Array
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4791
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4792
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4793
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4794
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4795
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4796
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4797
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4798
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4799
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4800
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4801
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4802
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4803
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4804
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4805
                             aspect: categoryListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4806
                           )
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4810
                             aspect: categoryPopUpMenu
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: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4814
                             aspect: classListGenerator
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: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4819
                             aspect: selectedCategories
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: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4823
                             aspect: showClassPackages
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
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4827
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4828
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4829
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4830
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4831
                         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
  4832
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4833
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4834
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4835
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4836
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4837
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4838
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4839
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4840
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4841
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4842
                              (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4846
                                   callBack: classDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4850
                                   aspect: environmentHolder
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: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4855
                                   aspect: hideUnloadedClasses
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4859
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4860
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4863
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4864
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4865
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4866
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4867
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4868
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4869
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4872
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4873
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4874
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4875
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4876
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4877
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4878
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4881
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4882
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4883
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4884
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4885
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4886
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4887
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4888
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4889
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4890
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4891
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4892
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4893
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4894
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4895
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4896
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4897
                                 )
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4901
                                   aspect: selectionChangeConditionHolder
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4904
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4905
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4906
                                 )
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: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4910
                                   aspect: sortByNameAndInheritance
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4914
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4915
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4916
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4917
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4918
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4919
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4920
                              (Array
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4923
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4924
                                   aspect: selectedClasses
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4927
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4928
                                   callBack: variableDoubleClicked
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
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4931
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4932
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4933
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4934
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4935
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4936
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4937
                                   aspect: variablesPopUpMenu
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4941
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4942
                                   aspect: variablesMenuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4943
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4944
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4945
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4946
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4947
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4948
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4949
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4950
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  4951
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4952
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4953
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4954
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4955
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4956
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4957
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4958
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4959
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  4960
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4961
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4962
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4963
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4964
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4965
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4966
                          
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
                         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
  4969
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4970
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4971
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4972
                         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
  4973
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4974
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4975
                       )
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
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4978
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4979
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4980
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4981
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4982
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4983
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4984
                  (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4988
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4989
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4990
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4991
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4992
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4993
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4994
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4995
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4996
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4997
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4998
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  4999
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5000
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5001
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5002
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5003
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5004
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5005
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5006
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5007
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5008
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5009
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5010
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5011
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5014
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5015
                       aspect: methodVisibilityHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5018
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5019
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5020
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5021
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5022
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5023
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5024
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5025
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5026
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5027
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5028
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5029
                       callBack: protocolSelectionChanged
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5034
                       aspect: selectionChangeConditionHolder
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5038
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5039
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5040
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5041
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5042
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5043
               ) 
14730
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: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5047
                       aspect: showPseudoProtocols
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5050
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5051
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5052
                     )
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5055
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5056
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5057
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5058
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5059
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5060
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5061
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5062
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5063
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5064
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5065
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5066
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5067
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5068
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5069
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5070
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5071
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5072
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5073
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5074
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5075
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5076
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5077
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5078
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5079
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5080
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5081
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5082
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5083
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5084
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5085
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5086
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5087
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5088
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5089
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5090
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5091
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5092
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5093
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5094
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5095
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5096
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5097
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5098
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5101
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5102
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5105
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5106
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5107
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5108
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5109
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5110
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5111
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5114
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5115
                       aspect: showMethodInheritance
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5119
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5120
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5121
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5122
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5123
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5124
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5125
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5126
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5127
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5128
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5129
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5130
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5131
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5132
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5133
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5134
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5135
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5136
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5137
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5138
             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
  5139
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5140
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5141
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5142
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5143
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5144
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5145
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5146
singleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5147
    "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
  5148
     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
  5149
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5150
    "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
  5151
     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
  5152
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
     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
  5155
     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
  5156
    "
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
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5159
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5160
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5161
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5162
       name: singleClassBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5163
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5164
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5165
         label: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5166
         name: 'ClassBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5167
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5168
         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
  5169
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5170
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5171
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5172
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5173
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5174
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5175
             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
  5176
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5177
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5178
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5179
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5180
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5181
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5182
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5183
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5184
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5185
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5186
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5187
                         name: 'PseudoClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5188
                         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
  5189
                         majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5190
                         minorKey: singleClassWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5191
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5192
                        (Array
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5196
                             aspect: environmentHolder
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5199
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5200
                             aspect: hideUnloadedClasses
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5203
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5204
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5205
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5206
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5207
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5208
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5209
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5210
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5211
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5212
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5213
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5214
                             aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5215
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5216
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5217
                             subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5218
                             aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5219
                           )
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: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5223
                             aspect: protocolListGenerator
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5226
                             subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5227
                             aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5228
                           )
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: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5232
                             aspect: showClassPackages
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5235
                             subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5236
                             aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5237
                           )
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
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5240
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5241
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5242
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5243
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5244
                         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
  5245
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5246
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5247
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5248
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5249
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5250
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5251
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5252
                               name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5253
                               majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5254
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5255
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5256
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5257
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5258
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5259
                                   callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5260
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5261
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5262
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5263
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5264
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5265
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5266
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5267
                                   subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5268
                                   aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5269
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5270
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5271
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5272
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5273
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5274
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5275
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5276
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5277
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5278
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5279
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5280
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5281
                                   aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5282
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5285
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5286
                                   aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5287
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5288
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5289
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5290
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5291
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5292
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5293
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5294
                                   subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5295
                                   aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5296
                                   callBack: protocolSelectionChanged
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5299
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5300
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5301
                                 )
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5305
                                   aspect: showCoverageInformation
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5308
                                   subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5309
                                   aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5310
                                 )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5311
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5312
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5313
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  5314
               ) 
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5317
                                   subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5318
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5319
                                 )
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5322
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5323
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5324
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5325
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5326
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5327
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5328
                              (Array
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5331
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5332
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5333
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5334
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5335
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5336
                                   callBack: variableDoubleClicked
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5340
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5341
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5342
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5343
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5344
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5345
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5346
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5347
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5348
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5349
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5350
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5351
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5352
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5353
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  5354
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5355
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5356
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5357
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5358
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5359
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5360
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  5361
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  5362
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  5363
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  5364
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5365
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5366
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5367
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5368
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5369
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5370
                          
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
                         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
  5373
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5374
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5375
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5376
                         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
  5377
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5378
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5379
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5380
                      )
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
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5384
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5385
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5386
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5387
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5388
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5389
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5390
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5391
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5392
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5393
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5394
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5395
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5396
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5397
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5398
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5399
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5400
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5401
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5402
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5403
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5404
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5405
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5406
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5407
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5408
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5409
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5410
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5411
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5412
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5413
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5414
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5415
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5416
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5417
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5418
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5419
                       aspect: packageFilter
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5422
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5423
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5424
                       callBack: methodsSelectionChanged
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5428
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5429
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5430
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5431
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5432
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5433
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5434
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5437
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5438
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5441
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5442
                       aspect: showMethodInheritance
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5445
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5446
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5447
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5448
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5449
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5450
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5451
                       aspect: showSyntheticMethods
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5454
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5455
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5456
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5457
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5458
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5459
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5460
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5461
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5462
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5463
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5464
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5465
             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
  5466
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5467
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5468
        
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
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5471
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5472
16567
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5473
singleClassWithoutVariableListBrowserSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5474
    "This resource specification was automatically generated
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5475
     by the UIPainter of ST/X."
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5476
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5477
    "Do not manually edit this!! If it is corrupted,
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5478
     the UIPainter may not be able to read the specification."
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5479
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5480
    "
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5481
     UIPainter new openOnClass:Tools::NavigatorCanvas andSelector:#singleClassWithoutVariableListBrowserSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5482
     Tools::NavigatorCanvas new openInterface:#singleClassWithoutVariableListBrowserSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5483
    "
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5484
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5485
    <resource: #canvas>
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5486
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5487
    ^ 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5488
    #(FullSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5489
       name: singleClassWithoutVariableListBrowserSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5490
       window: 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5491
      (WindowSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5492
         label: 'ClassBrowser'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5493
         name: 'ClassBrowser'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5494
         min: (Point 0 0)
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5495
         bounds: (Rectangle 0 0 462 300)
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5496
       )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5497
       component: 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5498
      (SpecCollection
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5499
         collection: (
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5500
          (VariableHorizontalPanelSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5501
             name: 'VariableHorizontalPanel1'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5502
             layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5503
             barWidth: 2
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5504
             showHandle: false
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5505
             component: 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5506
            (SpecCollection
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5507
               collection: (
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5508
                (ViewSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5509
                   name: 'Box1'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5510
                   component: 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5511
                  (SpecCollection
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5512
                     collection: (
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5513
                      (SubCanvasSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5514
                         name: 'PseudoClassList'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5515
                         layout: (LayoutFrame 0 0 0 0 0 1 25 0)
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5516
                         majorKey: ClassList
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5517
                         minorKey: singleClassWindowSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5518
                         subAspectHolders: 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5519
                        (Array
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5520
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5521
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5522
                             subAspect: environmentHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5523
                             aspect: environmentHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5524
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5525
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5526
                             subAspect: hideUnloadedClasses
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5527
                             aspect: hideUnloadedClasses
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5528
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5529
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5530
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5531
                             subAspect: immediateUpdate
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5532
                             aspect: immediateUpdate
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5533
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5534
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5535
                             subAspect: inGeneratorHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5536
                             aspect: classListGenerator
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5537
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5538
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5539
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5540
                             subAspect: menuHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5541
                             aspect: classPopUpMenu
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5542
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5543
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5544
                             subAspect: meta
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5545
                             aspect: meta
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5546
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5547
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5548
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5549
                             subAspect: outGeneratorHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5550
                             aspect: protocolListGenerator
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5551
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5552
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5553
                             subAspect: selectedClasses
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5554
                             aspect: selectedClasses
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5555
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5556
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5557
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5558
                             subAspect: showClassPackages
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5559
                             aspect: showClassPackages
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5560
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5561
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5562
                             subAspect: sortByNameAndInheritance
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5563
                             aspect: sortByNameAndInheritance
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5564
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5565
                         )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5566
                         createNewApplication: true
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5567
                         createNewBuilder: true
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5568
                       )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5569
                      (SubCanvasSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5570
                         name: 'MethodCategoryList'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5571
                         layout: (LayoutFrame 0 0 25 0 0 1 -25 1)
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5572
                         majorKey: MethodCategoryList
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5573
                         subAspectHolders: 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5574
                        (Array
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5575
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5576
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5577
                             subAspect: doubleClickChannel
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5578
                             callBack: protocolDoubleClicked
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5579
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5580
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5581
                             subAspect: environmentHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5582
                             aspect: environmentHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5583
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5584
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5585
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5586
                             subAspect: filterClassVars
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5587
                             aspect: filterClassVars
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5588
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5589
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5590
                             subAspect: immediateUpdate
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5591
                             aspect: immediateUpdate
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5592
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5593
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5594
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5595
                             subAspect: inGeneratorHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5596
                             aspect: protocolListGenerator
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5597
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5598
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5599
                             subAspect: menuHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5600
                             aspect: protocolMenu
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5601
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5602
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5603
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5604
                             subAspect: outGeneratorHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5605
                             aspect: selectorListGenerator
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5606
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5607
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5608
                             subAspect: packageFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5609
                             aspect: packageFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5610
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5611
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5612
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5613
                             subAspect: selectedProtocols
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5614
                             aspect: selectedProtocols
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5615
                             callBack: protocolSelectionChanged
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5616
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5617
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5618
                             subAspect: selectionChangeCondition
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5619
                             aspect: selectionChangeConditionHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5620
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5621
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5622
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5623
                             subAspect: showCoverageInformation
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5624
                             aspect: showCoverageInformation
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5625
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5626
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5627
                             subAspect: showPseudoProtocols
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5628
                             aspect: showPseudoProtocols
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5629
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5630
                           
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5631
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5632
                             subAspect: showSyntheticMethods
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5633
                             aspect: showSyntheticMethods
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5634
                           ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5635
                          (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5636
                             subAspect: variableFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5637
                             aspect: variableFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5638
                           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5639
                         )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5640
                         createNewApplication: true
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5641
                         createNewBuilder: true
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5642
                       )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5643
                      (UISubSpecification
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5644
                         name: 'MetaToggles'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5645
                         layout: (LayoutFrame 0 0 -25 1 0 1 0 1)
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5646
                         majorKey: NavigatorModel
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5647
                         minorKey: metaSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5648
                       )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5649
                      )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5650
                    
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5651
                   )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5652
                 )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5653
                (SubCanvasSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5654
                   name: 'MethodList'
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5655
                   majorKey: MethodList
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5656
                   subAspectHolders: 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5657
                  (Array
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5658
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5659
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5660
                       subAspect: doubleClickChannel
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5661
                       callBack: methodDoubleClicked
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5662
                     ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5663
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5664
                       subAspect: environmentHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5665
                       aspect: environmentHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5666
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5667
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5668
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5669
                       subAspect: filterClassVars
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5670
                       aspect: filterClassVars
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5671
                     ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5672
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5673
                       subAspect: immediateUpdate
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5674
                       aspect: immediateUpdate
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5675
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5676
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5677
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5678
                       subAspect: inGeneratorHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5679
                       aspect: selectorListGenerator
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5680
                     ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5681
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5682
                       subAspect: menuHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5683
                       aspect: selectorPopUpMenu
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5684
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5685
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5686
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5687
                       subAspect: packageFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5688
                       aspect: packageFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5689
                     ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5690
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5691
                       subAspect: selectedMethods
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5692
                       aspect: selectedMethods
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5693
                       callBack: methodsSelectionChanged
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5694
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5695
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5696
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5697
                       subAspect: selectionChangeCondition
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5698
                       aspect: selectionChangeConditionHolder
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5699
                     ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5700
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5701
                       subAspect: showCoverageInformation
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5702
                       aspect: showCoverageInformation
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5703
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5704
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5705
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5706
                       subAspect: showMethodComplexity
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5707
                       aspect: showMethodComplexity
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5708
                     ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5709
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5710
                       subAspect: showMethodInheritance
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5711
                       aspect: showMethodInheritance
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5712
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5713
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5714
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5715
                       subAspect: showMethodTypeIcon
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5716
                       aspect: showMethodTypeIcon
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5717
                     ) 
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5718
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5719
                       subAspect: showSyntheticMethods
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5720
                       aspect: showSyntheticMethods
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5721
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5722
                     
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5723
                    (SubChannelInfoSpec
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5724
                       subAspect: variableFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5725
                       aspect: variableFilter
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5726
                     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5727
                   )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5728
                   createNewApplication: true
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5729
                   createNewBuilder: true
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5730
                 )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5731
                )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5732
              
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5733
             )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5734
             handles: (Any 0.5 1.0)
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5735
           )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5736
          )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5737
        
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5738
       )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5739
     )
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5740
!
d47f89d64e91 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16532
diff changeset
  5741
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5742
singleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5743
    "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
  5744
     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
  5745
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5746
    "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
  5747
     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
  5748
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5749
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5750
     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
  5751
     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
  5752
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5753
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5754
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5755
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5756
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5757
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5758
       name: singleFullProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5759
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5760
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5761
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5762
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5763
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5764
         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
  5765
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5766
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5767
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5768
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5769
          (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5770
             name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5771
             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
  5772
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5773
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5774
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5775
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5776
                   name: 'PseudoProtocolList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5777
                   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
  5778
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5779
                   minorKey: singleProtocolWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5780
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5781
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5782
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5783
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5784
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5785
                       aspect: environmentHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5788
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5789
                       aspect: immediateUpdate
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5793
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5794
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5795
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5796
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5797
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5798
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5799
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5802
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5803
                       aspect: selectorListGenerator
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5806
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5807
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5808
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5809
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5810
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5811
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5812
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5813
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5814
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5815
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5816
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5817
                     )
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5820
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5821
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5822
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5823
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5824
                   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
  5825
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5826
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5827
                  (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5831
                       callBack: methodDoubleClicked
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5835
                       aspect: environmentHolder
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5840
                       aspect: immediateUpdate
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: inGeneratorHolder
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5849
                       aspect: selectorPopUpMenu
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5853
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5854
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5857
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5858
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5859
                       callBack: methodsSelectionChanged
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5863
                       aspect: selectionChangeConditionHolder
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5872
                       aspect: showCoverageInformation
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: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5876
                       aspect: sortBy
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
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5883
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5884
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5885
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5886
          )
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
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5889
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5890
!
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
singleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5893
    "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
  5894
     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
  5895
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5896
    "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
  5897
     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
  5898
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5899
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5900
     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
  5901
     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
  5902
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5903
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5904
    <resource: #canvas>
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
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5907
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5908
       name: singleNameSpaceBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5909
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5910
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5911
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5912
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5913
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5914
         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
  5915
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5916
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5917
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5918
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5919
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5920
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5921
             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
  5922
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5923
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5924
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5925
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5926
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5927
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5928
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5929
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5930
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5931
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5932
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5933
                         name: 'PseudoNameSpaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5934
                         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
  5935
                         majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5936
                         minorKey: singleNameSpaceWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5937
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5938
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5939
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5940
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5941
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5942
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5943
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5944
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5945
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5946
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5947
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5948
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5949
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5950
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5951
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5952
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5953
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5954
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5955
                             aspect: nameSpaceListGenerator
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5958
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5959
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5960
                             aspect: classListGenerator
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5963
                             subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5964
                             aspect: selectedNamespaces
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5968
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5969
                             aspect: showClassPackages
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5972
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5973
                         createNewBuilder: true
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
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5976
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5977
                         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
  5978
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5979
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5980
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5981
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5982
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5983
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5984
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5985
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5986
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5987
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5988
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5989
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5990
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5991
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5992
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5993
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5994
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5995
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5996
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5997
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5998
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  5999
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6000
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6001
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6002
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6003
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6004
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6005
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6006
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6007
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6008
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6009
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6010
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6011
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6012
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6013
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6014
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6015
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6016
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6017
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6018
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6019
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6020
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6021
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6022
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6023
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6024
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6025
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6026
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6027
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6028
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6029
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6030
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6031
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6032
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6033
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6034
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6035
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6036
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6037
                                   callBack: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6038
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6039
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6040
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6041
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6042
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6043
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6046
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6047
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6048
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6049
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6050
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6051
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6052
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6055
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6056
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6057
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6058
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6059
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6060
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6061
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6062
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6063
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6064
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6065
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6066
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6067
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6068
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6069
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6070
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6071
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6072
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6073
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6074
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6075
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6076
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6077
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6078
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6079
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6080
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6081
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6082
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6083
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6084
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6085
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6086
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6087
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6088
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6089
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6090
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6091
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  6092
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6093
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6094
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6095
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6096
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6097
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6098
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6099
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6100
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6101
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6102
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6103
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6104
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6105
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6106
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6107
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6108
                          
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
                         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
  6111
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6112
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6113
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6114
                         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
  6115
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6116
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6117
                       )
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
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6121
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6122
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6123
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6124
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6125
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6126
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6127
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6128
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6129
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6130
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6131
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6132
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6133
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6134
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6135
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6136
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6137
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6138
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6139
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6140
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6141
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6142
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6143
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6144
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6145
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6146
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6147
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6148
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6149
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6150
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6151
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6152
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6153
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6156
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6157
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6158
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6159
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6160
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6161
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6162
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6165
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6166
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6167
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6168
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6169
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6170
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6171
                       callBack: protocolSelectionChanged
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6176
                       aspect: selectionChangeConditionHolder
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: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6180
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6181
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6182
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6183
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6184
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6185
               ) 
14730
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: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6189
                       aspect: showPseudoProtocols
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6192
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6193
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6194
                     )
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
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6197
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6198
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6199
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6200
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6201
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6202
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6203
                  (Array
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: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6207
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6208
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6209
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6210
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6211
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6212
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6213
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6214
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6215
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6216
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6217
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6218
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6219
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6220
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6221
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6222
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6223
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6224
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6225
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6226
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6227
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6228
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6229
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6230
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6231
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6232
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6233
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6234
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6235
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6236
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6237
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6238
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6239
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6240
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6243
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6244
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6245
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6246
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6247
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6248
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6249
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6252
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6253
                       aspect: showMethodComplexity
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6256
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6257
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6258
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6261
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6262
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6263
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6264
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6265
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6266
                       aspect: showSyntheticMethods
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6270
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6271
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6272
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6273
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6274
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6275
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6276
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6277
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6278
              
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
             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
  6281
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6282
          )
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
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6286
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6287
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6288
singleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6289
    "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
  6290
     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
  6291
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6292
    "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
  6293
     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
  6294
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6295
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6296
     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
  6297
     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
  6298
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6299
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6300
    <resource: #canvas>
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
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6304
       name: singleNameSpaceFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6305
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6306
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6307
         label: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6308
         name: 'NameSpaceBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6309
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6310
         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
  6311
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6312
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6313
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6314
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6315
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6316
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6317
             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
  6318
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6319
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6320
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6321
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6322
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6323
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6324
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6325
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6326
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6327
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6328
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6329
                         name: 'PseudoNameSpaceList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6330
                         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
  6331
                         majorKey: NamespaceList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6332
                         minorKey: singleNameSpaceWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6333
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6334
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6335
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6336
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6337
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6338
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6339
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6340
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6341
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6342
                             aspect: hideUnloadedClasses
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6345
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6346
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6347
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6348
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6349
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6350
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6351
                             aspect: nameSpaceListGenerator
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6354
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6355
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6356
                             aspect: classListPerNameSpaceGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6357
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6358
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6359
                             subAspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6360
                             aspect: selectedNamespaces
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6363
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6364
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6365
                             aspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6366
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6367
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6368
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6369
                         createNewBuilder: true
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
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6372
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6373
                         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
  6374
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6375
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6376
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6377
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6378
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6379
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6380
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6381
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6382
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6383
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6384
                             aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6385
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6386
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6387
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6388
                             subAspect: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6389
                             aspect: forceClassCategoryGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6390
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6391
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6392
                             subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6393
                             aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6394
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6395
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6396
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6397
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6398
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6399
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6400
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6401
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6402
                             aspect: categoryPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6403
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6404
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6405
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6406
                             subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6407
                             aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6408
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6409
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6410
                             subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6411
                             aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6412
                           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6413
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6414
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6415
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6416
                             aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6417
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6418
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6419
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6420
                             aspect: selectedCategories
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
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6423
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6424
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6425
                             aspect: selectionChangeCondition
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6428
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6429
                             aspect: categoryListSlaveMode
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6433
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6434
                             aspect: classCategoryListUpdateTrigger
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6437
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6438
                         createNewBuilder: true
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
                      )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6441
                    
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
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6445
                   name: 'Box2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6446
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6447
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6448
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6449
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6450
                         name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6451
                         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
  6452
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6453
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6454
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6455
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6456
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6457
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6458
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6459
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6460
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6461
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6462
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6463
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6464
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6465
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6466
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6467
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6468
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6469
                                   subAspect: nameSpaceFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6470
                                   aspect: selectedNamespaces
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6471
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6472
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6473
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6474
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6475
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6476
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6477
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6478
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6479
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6480
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6481
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6482
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6483
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6484
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6485
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6486
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6487
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6488
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6489
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6490
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6491
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6492
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6493
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6494
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6495
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6496
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6497
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6498
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6499
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6500
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6501
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6502
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6503
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6504
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6505
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6506
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6507
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6508
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6509
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6510
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6511
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6512
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6513
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6514
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6515
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6516
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6517
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6518
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6519
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6520
                                   callBack: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6521
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6522
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6523
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6524
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6525
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6526
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6527
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6528
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6529
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6530
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6531
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6532
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6533
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6534
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6535
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6536
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6537
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6538
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6539
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6540
                              (Array
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6543
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6544
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6545
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6546
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6547
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6548
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6549
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6552
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6553
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6554
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6555
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6556
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6557
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6558
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6561
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  6562
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6563
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6564
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6565
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6566
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6567
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6568
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6569
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6570
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6571
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6572
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6573
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6574
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6575
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6576
                            )
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
                         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
  6580
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6581
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6582
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6583
                         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
  6584
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6585
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6586
                       )
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
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6590
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6591
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6592
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6593
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6594
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6595
                  (Array
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6598
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6599
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6600
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6601
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6602
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6603
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6604
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6607
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6608
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6609
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6610
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6611
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6612
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6613
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6614
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6615
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6616
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6617
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6618
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6619
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6620
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6621
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6622
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6623
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6624
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6625
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6626
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6627
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6628
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6629
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6630
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6631
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6632
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6633
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6634
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6635
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6636
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6637
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6638
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6639
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6640
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6641
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6644
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6645
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6648
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6649
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6650
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6651
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6652
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6653
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  6654
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6655
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6656
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6657
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6658
                       aspect: showPseudoProtocols
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6661
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6662
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6663
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6664
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6665
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6666
                   createNewBuilder: true
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6669
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6670
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6671
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6672
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6673
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6674
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6675
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6676
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6677
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6678
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6679
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6680
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6681
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6682
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6683
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6684
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6685
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6686
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6687
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6688
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6689
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6690
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6691
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6692
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6693
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6694
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6695
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6696
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6697
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6698
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6699
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6700
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6701
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6702
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6703
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6704
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6705
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6706
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6707
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6708
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6709
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6710
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6711
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6712
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6713
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6714
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6715
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6716
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6717
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6718
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6719
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6720
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6721
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6722
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6723
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6724
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6725
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6726
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6727
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6728
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6729
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6730
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6731
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6732
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6733
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6734
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6735
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6736
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6737
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6738
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6739
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6740
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6741
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6742
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6743
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6744
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6745
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6746
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6747
              
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
             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
  6750
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6751
          )
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
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6755
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6756
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6757
singleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6758
    "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
  6759
     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
  6760
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6761
    "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
  6762
     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
  6763
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6764
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6765
     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
  6766
     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
  6767
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6768
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6769
    <resource: #canvas>
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
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6773
       name: singleProjectBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6774
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6775
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6776
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6777
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6778
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6779
         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
  6780
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6781
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6782
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6783
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6784
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6785
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6786
             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
  6787
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6788
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6789
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6790
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6791
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6792
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6793
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6794
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6795
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6796
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6797
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6798
                         name: 'PseudoProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6799
                         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
  6800
                         majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6801
                         minorKey: singleProjectWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6802
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6803
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6804
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6805
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6806
                             subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6807
                             aspect: projectPopUpMenu
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: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6811
                             aspect: hideUnloadedClasses
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6815
                             subAspect: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6816
                             aspect: showClassPackages
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6819
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6820
                             aspect: projectListGenerator
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6824
                             subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6825
                             aspect: classListGenerator
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6828
                             subAspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6829
                             aspect: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6830
                           )
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6833
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6834
                             aspect: immediateUpdate
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6837
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6838
                         createNewBuilder: true
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
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6841
                         name: 'VariableVerticalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6842
                         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
  6843
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6844
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6845
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6846
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6847
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6848
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6849
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6850
                               name: 'ClassList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6851
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6852
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6853
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6854
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6855
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6856
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6857
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6858
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6859
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6860
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6861
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6862
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6863
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6864
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6865
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6866
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6867
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6868
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6869
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6870
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6871
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6872
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6873
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6874
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6875
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6876
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6877
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6878
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6879
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6880
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6881
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6882
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6883
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6884
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6885
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6886
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6887
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6888
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6889
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6890
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6891
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6892
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6893
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6894
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6895
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6896
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6897
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6898
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6899
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6900
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6901
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6902
                                   aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6903
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6904
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6905
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6906
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6907
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6908
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6909
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6910
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6911
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6912
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6913
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6914
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6915
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6916
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6917
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6918
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6919
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6920
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6921
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6922
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6923
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6924
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6925
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6926
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6927
                            (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6928
                               name: 'VariableList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6929
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6930
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6931
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6932
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6933
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6934
                                   subAspect: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6935
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6936
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6937
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6938
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6939
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6940
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6941
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6942
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6943
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6944
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6945
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6946
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6947
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6948
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6949
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6950
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6951
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6952
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6953
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6954
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6955
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6956
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  6957
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6958
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6959
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6960
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6961
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6962
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6963
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6964
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6965
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6966
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  6967
                     )
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6968
                               )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6969
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6970
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6971
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6972
                            )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6973
                          
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
                         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
  6976
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6977
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6978
                         name: 'MetaToggles'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6979
                         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
  6980
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6981
                         minorKey: metaSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6982
                       )
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
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6988
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6989
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6990
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6991
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6992
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6993
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6994
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6995
                       callBack: protocolDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6996
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6997
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6998
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  6999
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7000
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7001
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7002
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7003
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7004
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7005
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7006
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7007
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7008
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7009
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7010
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7011
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7012
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7013
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7014
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7015
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7016
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7017
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7018
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7019
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7020
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7021
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7022
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7023
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7024
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7025
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7026
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7027
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7028
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7029
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7030
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7031
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7032
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7033
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7034
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7035
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7036
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7037
                     )
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: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7041
                       aspect: selectionChangeConditionHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7044
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7045
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7046
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7047
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7048
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7049
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7050
               ) 
14730
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7053
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7054
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7055
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7056
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7057
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7058
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7059
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7060
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7061
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7062
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7063
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7064
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7065
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7066
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7067
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7068
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7069
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7070
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7071
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7072
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7073
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7074
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7075
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7076
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7077
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7078
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7079
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7080
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7081
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7082
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7083
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7084
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7085
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7086
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7087
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7088
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7089
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7090
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7091
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7092
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7093
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7094
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7095
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7096
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7097
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7098
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7099
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7100
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7101
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7102
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7103
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7104
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7105
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7106
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7107
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7108
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7109
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7110
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7111
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7112
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7113
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7114
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7115
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7116
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7117
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7118
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7119
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7120
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7121
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7122
                       aspect: showMethodInheritance
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
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7125
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7126
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7127
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7128
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7129
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7130
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7131
                       aspect: showSyntheticMethods
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7135
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7136
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7137
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7138
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7139
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7140
                   createNewBuilder: true
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
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7143
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7144
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7145
             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
  7146
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7147
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7148
        
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
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7152
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7153
singleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7154
    "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
  7155
     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
  7156
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7157
    "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
  7158
     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
  7159
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7160
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7161
     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
  7162
     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
  7163
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7164
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7165
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7166
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
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7169
       name: singleProjectFullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7170
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7171
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7172
         label: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7173
         name: 'ProjectBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7174
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7175
         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
  7176
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7177
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7178
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7179
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7180
          (VariableHorizontalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7181
             name: 'VariableHorizontalPanel1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7182
             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
  7183
             barWidth: 2
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7184
             showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7185
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7186
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7187
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7188
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7189
                   name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7190
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7191
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7192
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7193
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7194
                         name: 'PseudoProjectList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7195
                         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
  7196
                         majorKey: ProjectList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7197
                         minorKey: singleProjectWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7198
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7199
                        (Array
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: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7203
                             aspect: environmentHolder
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: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7207
                             aspect: hideUnloadedClasses
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7211
                             subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7212
                             aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7213
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7214
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7215
                             subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7216
                             aspect: projectListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7217
                           )
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7221
                             aspect: projectPopUpMenu
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: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7225
                             aspect: classListGenerator
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: selectedProjects
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7230
                             aspect: selectedProjects
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: showClassPackages
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7234
                             aspect: showClassPackages
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
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7238
                         createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7239
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7240
                      (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7241
                         name: 'ClassCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7242
                         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
  7243
                         majorKey: ClassCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7244
                         subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7245
                        (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7246
                           
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7247
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7248
                             subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7249
                             callBack: classCategoryDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7250
                           ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7251
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7252
                             subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7253
                             aspect: environmentHolder
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: forceGeneratorTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7258
                             aspect: forceClassCategoryGeneratorTrigger
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: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7262
                             aspect: hideUnloadedClasses
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: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7267
                             aspect: immediateUpdate
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: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7271
                             aspect: categoryPopUpMenu
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: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7276
                             aspect: organizerMode
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: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7280
                             aspect: classListGenerator
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: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7285
                             aspect: selectedProjects
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7288
                             subAspect: selectedCategories
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7289
                             aspect: selectedCategories
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7293
                             subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7294
                             aspect: selectionChangeCondition
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7297
                             subAspect: slaveMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7298
                             aspect: categoryListSlaveMode
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
                          (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7302
                             subAspect: updateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7303
                             aspect: classCategoryListUpdateTrigger
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7304
                           )
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
                         createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7307
                         createNewBuilder: true
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
                    
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7311
                   )
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
                (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7314
                   name: 'Box2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7315
                   component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7316
                  (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7317
                     collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7318
                      (VariableVerticalPanelSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7319
                         name: 'VariableVerticalPanel2'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7320
                         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
  7321
                         showHandle: false
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7322
                         snapMode: both
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7323
                         handlePosition: left
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7324
                         component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7325
                        (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7326
                           collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7327
                            (SubCanvasSpec
15250
46226edf92ef class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15120
diff changeset
  7328
                               name: 'ClassList'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7329
                               majorKey: ClassList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7330
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7331
                              (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7332
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7333
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7334
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7335
                                   callBack: classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7336
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7337
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7338
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7339
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7340
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7341
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7342
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7343
                                   subAspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7344
                                   aspect: hideUnloadedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7345
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7346
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7347
                                   subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7348
                                   aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7349
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7352
                                   subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7353
                                   aspect: classListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7354
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7355
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7356
                                   subAspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7357
                                   aspect: markApplicationsHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7358
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7361
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7362
                                   aspect: classPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7363
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7364
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7365
                                   subAspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7366
                                   aspect: meta
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7367
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7370
                                   subAspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7371
                                   aspect: organizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7372
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7373
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7374
                                   subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7375
                                   aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7376
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7379
                                   subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7380
                                   aspect: selectedProjects
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7383
                                   subAspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7384
                                   aspect: selectedClasses
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7385
                                   callBack: classSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7386
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7387
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7388
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7389
                                   subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7390
                                   aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7391
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7392
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7393
                                   subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7394
                                   aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7395
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7398
                                   subAspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7399
                                   aspect: sortByNameAndInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7400
                                 )
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7403
                               createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7404
                             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7405
                            (SubCanvasSpec
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  7406
                               name: 'VariableList'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7407
                               majorKey: VariableList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7408
                               subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7409
                              (Array
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: classHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7413
                                   aspect: selectedClasses
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7416
                                   subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7417
                                   callBack: variableDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7418
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7419
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7420
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7421
                                   subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7422
                                   aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7423
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7424
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7425
                                   subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7426
                                   aspect: variablesPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7427
                                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7428
                                 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7429
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7430
                                   subAspect: selectedVariables
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7431
                                   aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7432
                                 ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7433
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7434
                                   subAspect: showClassVarsInVariableList
14912
68dcfdfde6c7 class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 14730
diff changeset
  7435
                                   aspect: showClassVarsInVariableList
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7436
                                 )
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
                                (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7439
                                   subAspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7440
                                   aspect: sortVariablesByName
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7441
                                 )
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  7442
                    (SubChannelInfoSpec
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  7443
                       subAspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  7444
                       aspect: groupVariablesByInheritance
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  7445
                     )
14730
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
                               createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7448
                               createNewBuilder: true
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
                         )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7453
                         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
  7454
                       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7455
                      (UISubSpecification
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7456
                         name: 'SubSpecification1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7457
                         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
  7458
                         majorKey: NavigatorModel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7459
                         minorKey: metaSpec
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
                    
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
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7465
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7466
                   name: 'MethodCategoryList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7467
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7468
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7469
                  (Array
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7472
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7473
                       callBack: protocolDoubleClicked
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7476
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7477
                       aspect: environmentHolder
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7481
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7482
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7483
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7484
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7485
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7486
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7487
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7490
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7491
                       aspect: protocolListGenerator
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7494
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7495
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7496
                     )
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
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7499
                       subAspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7500
                       aspect: methodVisibilityHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7501
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7502
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7503
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7504
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7505
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7506
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7507
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7508
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7509
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7510
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7511
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7512
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7513
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7514
                       callBack: protocolSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7515
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7516
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7517
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7518
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7519
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7520
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7521
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7522
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7523
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7524
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7525
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7526
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7527
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7528
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7529
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7530
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7531
                       subAspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7532
                       aspect: showPseudoProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7533
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7534
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7535
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7536
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7537
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7538
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7539
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7540
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7541
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7542
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7543
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7544
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7545
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7546
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7547
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7548
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7549
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7550
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7551
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7552
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7553
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7554
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7555
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7556
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7557
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7558
                       subAspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7559
                       aspect: filterClassVars
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7560
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7561
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7562
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7563
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7564
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7565
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7566
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7567
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7568
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7569
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7570
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7571
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7572
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7573
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7574
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7575
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7576
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7577
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7578
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7579
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7580
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7581
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7582
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7583
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7584
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7585
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7586
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7587
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7588
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7589
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7590
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7591
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7592
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7593
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7594
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7595
                       subAspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7596
                       aspect: showMethodComplexity
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7597
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7598
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7599
                       subAspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7600
                       aspect: showMethodInheritance
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7601
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7602
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7603
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7604
                       subAspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7605
                       aspect: showMethodTypeIcon
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7606
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7607
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7608
                       subAspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7609
                       aspect: showSyntheticMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7610
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7611
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7612
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7613
                       subAspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7614
                       aspect: variableFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7615
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7616
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7617
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7618
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7619
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7620
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7621
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7622
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7623
             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
  7624
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7625
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7626
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7627
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7628
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7629
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7630
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7631
singleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7632
    "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
  7633
     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
  7634
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7635
    "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
  7636
     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
  7637
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7638
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7639
     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
  7640
     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
  7641
    "
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7642
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7643
    <resource: #canvas>
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7644
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7645
    ^ 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7646
    #(FullSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7647
       name: singleProtocolBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7648
       window: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7649
      (WindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7650
         label: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7651
         name: 'ProtocolBrowser'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7652
         min: (Point 0 0)
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7653
         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
  7654
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7655
       component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7656
      (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7657
         collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7658
          (ViewSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7659
             name: 'Box1'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7660
             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
  7661
             component: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7662
            (SpecCollection
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7663
               collection: (
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7664
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7665
                   name: 'PseudoProtocolList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7666
                   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
  7667
                   majorKey: MethodCategoryList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7668
                   minorKey: singleProtocolWindowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7669
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7670
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7671
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7672
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7673
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7674
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7675
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7676
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7677
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7678
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7679
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7680
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7681
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7682
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7683
                       aspect: protocolListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7684
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7685
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7686
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7687
                       aspect: protocolMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7688
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7689
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7690
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7691
                       subAspect: outGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7692
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7693
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7694
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7695
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7696
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7697
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7698
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7699
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7700
                       subAspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7701
                       aspect: selectedProtocols
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7702
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7703
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7704
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7705
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7706
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7707
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7708
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7709
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7710
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7711
                (SubCanvasSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7712
                   name: 'MethodList'
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7713
                   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
  7714
                   majorKey: MethodList
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7715
                   subAspectHolders: 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7716
                  (Array
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7717
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7718
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7719
                       subAspect: doubleClickChannel
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7720
                       callBack: methodDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7721
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7722
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7723
                       subAspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7724
                       aspect: environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7725
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7726
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7727
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7728
                       subAspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7729
                       aspect: immediateUpdate
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7730
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7731
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7732
                       subAspect: inGeneratorHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7733
                       aspect: selectorListGenerator
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7734
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7735
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7736
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7737
                       subAspect: menuHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7738
                       aspect: selectorPopUpMenu
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7739
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7740
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7741
                       subAspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7742
                       aspect: packageFilter
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7743
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7744
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7745
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7746
                       subAspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7747
                       aspect: selectedMethods
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7748
                       callBack: methodsSelectionChanged
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7749
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7750
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7751
                       subAspect: selectionChangeCondition
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7752
                       aspect: selectionChangeConditionHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7753
                     )
15433
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7754
              (SubChannelInfoSpec
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7755
                 subAspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7756
                 aspect: showSyntheticMethods
629ef97fdd3f class: Tools::NavigatorCanvas
Claus Gittinger <cg@exept.de>
parents: 15250
diff changeset
  7757
               ) 
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7758
                     
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7759
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7760
                       subAspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7761
                       aspect: showCoverageInformation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7762
                     ) 
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7763
                    (SubChannelInfoSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7764
                       subAspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7765
                       aspect: sortBy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7766
                     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7767
                   )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7768
                   createNewApplication: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7769
                   createNewBuilder: true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7770
                 )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7771
                )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7772
              
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7773
             )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7774
           )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7775
          )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7776
        
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7777
       )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7778
     )
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7779
!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7780
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7781
windowSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7782
    ^ self fullBrowserSpec
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7783
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7784
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7785
!NavigatorCanvas class methodsFor:'misc'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7786
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7787
classResources
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7788
    ^ NewSystemBrowser classResources
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7789
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7790
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7791
!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
  7792
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7793
aspectSelectors
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7794
    "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
  7795
     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
  7796
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7797
    "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
  7798
     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
  7799
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7800
    "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
  7801
     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
  7802
     (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
  7803
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7804
    ^ #(
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7805
        #environmentHolder
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7806
      ).
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7807
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7808
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7809
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7810
!NavigatorCanvas methodsFor:'accessing'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7811
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7812
initialOrganizerMode
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7813
    ^ nil  "/ dummy
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7814
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7815
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7816
!NavigatorCanvas methodsFor:'actions'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7817
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7818
classDoubleClicked
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7819
    self subclassResponsibility
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7820
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7821
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7822
!NavigatorCanvas methodsFor:'queries'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7823
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7824
showAllClassesInNameSpaceOrganisation
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7825
    ^ true
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7826
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7827
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7828
!NavigatorCanvas class methodsFor:'documentation'!
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7829
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7830
version_CVS
16532
2f9e7091b4b5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 15441
diff changeset
  7831
    ^ '$Header$'
14730
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7832
! !
5b8ef32ac6cf Added new superclass TestRunnerMini for small mini test runner.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
  7833