stx_goodies_regression.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 29 Jun 2016 21:40:53 +0100
branchjv
changeset 1499 26a16a04219b
parent 1497 exept_regression.st@a7335c367bb0
child 1500 d406a10b2965
permissions -rw-r--r--
Package renamed from exept:regression to stx:goodies/regression. Hooray!
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
     1
"{ Package: 'stx:goodies/regression' }"
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
1257
00ec1b197228 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
     3
"{ NameSpace: Smalltalk }"
00ec1b197228 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
     4
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
     5
LibraryDefinition subclass:#stx_goodies_regression
768
ad7d42dec0d5 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 744
diff changeset
     6
	instanceVariableNames:''
ad7d42dec0d5 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 744
diff changeset
     7
	classVariableNames:''
ad7d42dec0d5 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 744
diff changeset
     8
	poolDictionaries:''
ad7d42dec0d5 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 744
diff changeset
     9
	category:'* Projects & Packages *'
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
    13
!stx_goodies_regression class methodsFor:'accessing - tests'!
607
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
    14
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    15
testCaseNamesWithoutNamespace
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    16
    ^#(
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    17
     "/ 'SunitXMLOutputTest'
1485
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1483
diff changeset
    18
    'ProjectDefinitionTests'
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    19
    'CoverageInstrumentationTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    20
    'AssociationTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    21
    'BinaryIOTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    22
    'BinaryTreeTester'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    23
    "/ 'BlockTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    24
    'CharacterTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    25
    'CollectionTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    26
    'CompilerTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    27
    'ComplexTest'
1485
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1483
diff changeset
    28
    "/ 'STCCompilerTests'
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    29
    "/ 'DebuggerTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    30
    "/ 'DeepCopyTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    31
    'DelayTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    32
    'DictionaryTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    33
    'EnumerationTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    34
    'ExceptionTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    35
    "/ 'ExternalInterfaceTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    36
    "/ 'FileOpenTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    37
    'FileStreamTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    38
    'FloatTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    39
    'FractionTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    40
    "/ 'GCTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    41
    "/ 'GraphicDrawingTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    42
    "/ 'HTMLParserTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    43
    "/ 'ImageReaderTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    44
    'IntegerTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    45
    'JavaScriptTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    46
    "/ 'MeasurementValueTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    47
    "/ 'MemoryTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    48
    'NumberTest'
1169
37e1670177ed class: exept_regression
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1145
diff changeset
    49
    'ParserTest'
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    50
    'ScaledDecimalTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    51
    "/ 'SemaphoreTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    52
    "/ 'SharedQueueTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    53
    'SmallIntegerTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    54
    "/ 'SortTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    55
    'StringTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    56
    'StreamTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    57
    'TimeAndDateTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    58
    'TimeDurationTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    59
    "/ 'URLTest'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    60
    "/ 'XMLCoderTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    61
    "/ 'ZipArchiveTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    62
    'ClassBuilderTests'
1494
c436cb06f325 Backed out changeset 181c8df2e7e0
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1485
diff changeset
    63
    'CompilerTests2'
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    64
    'ChangeSetTests'
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    65
    'FilenameTests'
861
d2ad51747e2e Added test for UTF8 support in file in.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 844
diff changeset
    66
    'ProjectDefinitionTests'
961
92711b31f232 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 950
diff changeset
    67
    'ClassDescriptionTests'
987
ddbe57fb85cd Add SnapshotRestartTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 961
diff changeset
    68
    'SnapshotRestartTests'
1009
01c50a83793a Added RegressionTests::MakefileTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 987
diff changeset
    69
    'MakefileTests'
1116
403996e5bfe7 Added some elementary tests for TSTree and TSMultiTree.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1114
diff changeset
    70
    'TSTreeTests'
403996e5bfe7 Added some elementary tests for TSTree and TSMultiTree.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1114
diff changeset
    71
    'TSMultiTreeTests'
1494
c436cb06f325 Backed out changeset 181c8df2e7e0
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1485
diff changeset
    72
    'VMCrashTests'
1196
69f94a55c117 Added ProcessTest to testsuite.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1188
diff changeset
    73
    'ProcessTest'
1216
09a93697b760 Added PipeStreamTest to regression test suite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1209
diff changeset
    74
    'PipeStreamTest'
1243
2f3b23046891 Added JITTest to regression suite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1216
diff changeset
    75
    'JITTest'
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    76
    )
861
d2ad51747e2e Added test for UTF8 support in file in.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 844
diff changeset
    77
1243
2f3b23046891 Added JITTest to regression suite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1216
diff changeset
    78
    "Modified: / 18-11-2014 / 11:54:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    79
!
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    80
607
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
    81
testSuite
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
    82
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
    83
    | suite |
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
    84
844
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    85
    suite := TestSuite named: self package.    
f54aa16c1732 List of tests moved to one place so it is always the same for all three test runners (sigh, we have three different!)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 842
diff changeset
    86
    self testCaseNamesWithoutNamespace do:[:className |
618
afccf87e008f updated to suite defined in stx/goodies/builder/quickSelfTest
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 617
diff changeset
    87
        |fullName|
949
ba9ae1368472 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    88
618
afccf87e008f updated to suite defined in stx/goodies/builder/quickSelfTest
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 617
diff changeset
    89
        fullName := ('RegressionTests::',className).
950
8413002980d7 Fixed typo
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 949
diff changeset
    90
        ('Loading ',className,'...') infoPrintCR.
949
ba9ae1368472 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    91
        Smalltalk fileInClass:fullName package:self package.
ba9ae1368472 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    92
        (Smalltalk classNamed:fullName) isNil ifTrue:[
ba9ae1368472 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    93
            ('**** Ouch - missing class: "',fullName,'"') infoPrintCR.
ba9ae1368472 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    94
        ] ifFalse:[
ba9ae1368472 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    95
            suite addTest:(Smalltalk classNamed:fullName) suite.
ba9ae1368472 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    96
        ].
618
afccf87e008f updated to suite defined in stx/goodies/builder/quickSelfTest
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 617
diff changeset
    97
    ].
607
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
    98
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
    99
    ^suite
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
   100
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
   101
    "Created: / 03-08-2011 / 09:19:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
   102
! !
2536a136bec6 added: #testSuite
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 602
diff changeset
   103
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
   104
!stx_goodies_regression class methodsFor:'description'!
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
excludedFromPreRequisites
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    "list all packages which should be ignored in the automatic
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
     preRequisites scan. See #preRequisites for more."
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
    ^ #(
1101
1a472ea91707 Removed exept:libcrypt from prereqs. Individual testcases loads exept:libcrypt
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1099
diff changeset
   111
        #'exept:libcrypt'    "loaded lazily by CryptTests - SHA256Stream - referenced by RegressionTests::CryptTests>>test06_sha256 "
892
185ff3183c8a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 885
diff changeset
   112
        #'stx:goodies'    "no project def - CharacterEncoderCodeGenerator - referenced by RegressionTests::CharacterTests>>test01CaseTesting "
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    )
1101
1a472ea91707 Removed exept:libcrypt from prereqs. Individual testcases loads exept:libcrypt
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1099
diff changeset
   114
1a472ea91707 Removed exept:libcrypt from prereqs. Individual testcases loads exept:libcrypt
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1099
diff changeset
   115
    "Modified: / 03-03-2014 / 12:00:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
833
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   118
mandatoryPreRequisites
1145
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   119
    "list packages which are mandatory as a prerequisite.
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   120
     This are packages containing superclasses of my classes and classes which
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   121
     are extended by myself.
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   122
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   123
     This method is generated automatically,
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   124
     by searching along the inheritance chain of all of my classes."
833
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   125
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   126
    ^ #(
1173
3afa2fe16058 Added VMCrashTestCase
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1169
diff changeset
   127
        #'stx:goodies/sunit'    "TestAsserter - superclass of RegressionTests::VMCrashTestCase"
3afa2fe16058 Added VMCrashTestCase
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1169
diff changeset
   128
        #'stx:libbasic'    "Autoload - superclass of RegressionTests::AssociationTests"
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    )
833
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   130
!
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   131
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   132
referencedPreRequisites
1145
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   133
    "list packages which are a prerequisite, because they contain
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   134
     classes which are referenced by my classes.
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   135
     We do not need these packages as a prerequisite for loading or compiling.
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   136
     This method is generated automatically,
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   137
     by searching all classes (and their packages) which are referenced by my classes."
833
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   138
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   139
    ^ #(
b1612e26b833 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 811
diff changeset
   140
    )
885
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   141
!
861
d2ad51747e2e Added test for UTF8 support in file in.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 844
diff changeset
   142
885
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   143
subProjects
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   144
    "list packages which are known as subprojects.
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   145
     The generated makefile will enter those and make there as well.
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   146
     However: they are not forced to be loaded when a package is loaded;
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   147
     for those, redefine requiredPrerequisites"
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   148
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   149
    ^ #(
19f9f88fe6ff automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 863
diff changeset
   150
    )
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
! !
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
   153
!stx_goodies_regression class methodsFor:'description - contents'!
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
classNamesAndAttributes
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    "lists the classes which are to be included in the project.
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
     Each entry in the list may be: a single class-name (symbol),
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
     or an array-literal consisting of class name and attributes.
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
    ^ #(
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
        "<className> or (<className> attributes...) in load order"
1497
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1494
diff changeset
   163
        (#'RegressionTests::CompressionStreamTest' autoload)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1494
diff changeset
   164
        (#'RegressionTests::LinkedListTest' autoload)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1494
diff changeset
   165
        (#'RegressionTests::QueueTest' autoload)
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
   166
        #'stx_goodies_regression'
1485
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1483
diff changeset
   167
        (#'RegressionTests::Win32OLETests' autoload)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1483
diff changeset
   168
        (#'RegressionTests::Win32OperatingSystemTest' autoload)
1257
00ec1b197228 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
   169
        (#'RegressionTests::HTMLParserTests' autoload)
00ec1b197228 class: exept_regression
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
   170
        (#'RegressionTests::HTTPServerTests' autoload)
1209
c2b949b636d9 Added missing class CompilerTests2ExternalBytes - required by FFI test
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1196
diff changeset
   171
        (#'RegressionTests::CompilerTests2' autoload)
c2b949b636d9 Added missing class CompilerTests2ExternalBytes - required by FFI test
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1196
diff changeset
   172
        (#'RegressionTests::CompilerTests2ExternalBytes' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   173
        (#'RegressionTests::AssociationTests' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   174
        (#'RegressionTests::BecomeTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   175
        (#'RegressionTests::BehaviorLookupObjectTests' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   176
        (#'RegressionTests::BinaryIOTests' autoload)
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   177
        (#'RegressionTests::BinaryTreeTester' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   178
        (#'RegressionTests::BlockTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   179
        (#'RegressionTests::BreakpointTests' autoload)
1145
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   180
        (#'RegressionTests::CECollectionExtensionTest' autoload)
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   181
        (#'RegressionTests::CESequenceableCollectionExtensionTest' autoload)
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   182
        (#'RegressionTests::CEStringExtensionTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   183
        (#'RegressionTests::CachedValueTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   184
        (#'RegressionTests::CharacterEncoderTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   185
        (#'RegressionTests::CharacterSetTests' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   186
        (#'RegressionTests::CharacterTests' autoload)
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   187
        (#'RegressionTests::ClassAndMethodCompilingTestCase' autoload)
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   188
        (#'RegressionTests::ClassDescriptionTests' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   189
        (#'RegressionTests::ClassWithoutVersionMethod' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   190
        (#'RegressionTests::CollectionTests' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   191
        (#'RegressionTests::CompilerTest' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   192
        (#'RegressionTests::ComplexTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   193
        (#'RegressionTests::ContextTest2' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   194
        (#'RegressionTests::CoverageInstrumentationTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   195
        (#'RegressionTests::CryptTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   196
        (#'RegressionTests::DebuggerTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   197
        (#'RegressionTests::DeepCopyTests' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   198
        (#'RegressionTests::DelayTest' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   199
        (#'RegressionTests::DictionaryTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   200
        (#'RegressionTests::DoubleMetaphoneStringComparatorTest' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   201
        (#'RegressionTests::EnumerationTests' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   202
        (#'RegressionTests::ExceptionTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   203
        (#'RegressionTests::ExternalInterfaceTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   204
        (#'RegressionTests::ExternalStreamTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   205
        (#'RegressionTests::FileOpenTest' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   206
        (#'RegressionTests::FileStreamTest' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   207
        (#'RegressionTests::FilenameTests' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   208
        (#'RegressionTests::FloatTest' autoload)
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   209
        (#'RegressionTests::FractionTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   210
        (#'RegressionTests::GCTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   211
        (#'RegressionTests::GraphicDrawingTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   212
        (#'RegressionTests::ImageReaderTest' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   213
        (#'RegressionTests::IntegerTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   214
        (#'RegressionTests::JITTest' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   215
        (#'RegressionTests::JavaScriptTests' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   216
        (#'RegressionTests::KoelnerPhoneticCodeStringComparatorTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   217
        (#'RegressionTests::LabelResizingTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   218
        (#'RegressionTests::LargeFloatTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   219
        (#'RegressionTests::LiteralsInMethodTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   220
        (#'RegressionTests::LoggedStreamTests' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   221
        (#'RegressionTests::MakefileTests' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   222
        (#'RegressionTests::ManyProcessesTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   223
        (#'RegressionTests::MeasurementValueTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   224
        (#'RegressionTests::MemoryTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   225
        (#'RegressionTests::MetaNumbersTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   226
        (#'RegressionTests::MiracodeStringComparatorTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   227
        (#'RegressionTests::MySQLSoundexStringComparatorTest' autoload)
1130
e316f125ff22 Added abstract class for tests creating and compiling code.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1116
diff changeset
   228
        (#'RegressionTests::NumberTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   229
        (#'RegressionTests::OS_OLE_Tests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   230
        (#'RegressionTests::OperatingSystemTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   231
        (#'RegressionTests::OperationInQueueTests' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   232
        (#'RegressionTests::PTYTest' autoload)
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   233
        (#'RegressionTests::ParserTests' autoload)
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   234
        (#'RegressionTests::PipeStreamTest' autoload)
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   235
        (#'RegressionTests::PowerSetTests' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   236
        (#'RegressionTests::ProcessTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   237
        (#'RegressionTests::ProjectDefinitionTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   238
        (#'RegressionTests::QuickTestRunner' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   239
        (#'RegressionTests::STCCompilerTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   240
        (#'RegressionTests::ScaledDecimalTest' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   241
        (#'RegressionTests::SegmentedOrderedCollectionTests' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   242
        (#'RegressionTests::SelectorNamespacesTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   243
        (#'RegressionTests::SemaphoreTest' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   244
        (#'RegressionTests::ServerSocketTest' autoload)
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   245
        (#'RegressionTests::SharedQueueTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   246
        (#'RegressionTests::SmallIntegerTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   247
        (#'RegressionTests::SnapshotRestartTests' autoload)
1099
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   248
        (#'RegressionTests::SocketTests' autoload)
299ef603f3c6 merged classes
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   249
        (#'RegressionTests::SortTests' autoload)
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   250
        (#'RegressionTests::SoundexStringComparatorTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   251
        (#'RegressionTests::StackFrameTest' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   252
        (#'RegressionTests::StreamTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   253
        (#'RegressionTests::StringTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   254
        (#'RegressionTests::SunitXMLOutputTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   255
        (#'RegressionTests::TSTreeTests' autoload)
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
        (#'RegressionTests::TestDialogs1' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   257
        (#'RegressionTests::TimeAndDateTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   258
        (#'RegressionTests::TimeDurationTest' autoload)
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
        (#'RegressionTests::URLTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
        (#'RegressionTests::UTF8TestClass' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   261
        (#'RegressionTests::UninterpretedBytesTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   262
        (#'RegressionTests::VMCrashTestCase' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   263
        (#'RegressionTests::WeakCollectionTest' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   264
        (#'RegressionTests::WritingToTranscriptOrStdoutTest' autoload)
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
        (#'RegressionTests::WrongMethodCalledTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
        (#'RegressionTests::XMLCoderTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
        (#'RegressionTests::ZipArchiveTests' autoload)
1188
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   268
        (#'RegressionTests::ChangeSetTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   269
        (#'RegressionTests::ClassBuilderTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   270
        (#'RegressionTests::TSMultiTreeTests' autoload)
f5989af35ddf Added VMCrashTests
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1173
diff changeset
   271
        (#'RegressionTests::VMCrashTests' autoload)
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
    )
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
extensionMethodNames
1145
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   276
    "list class/selector pairs of extensions.
1190924662f0 Updated dependencies and regerated build support files.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1130
diff changeset
   277
     A correponding method with real names must be present in my concrete subclasses"
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
    ^ #(
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
    )
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
! !
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
   283
!stx_goodies_regression class methodsFor:'description - project information'!
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
applicationIconFileName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
    ^ nil
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   289
    "/ ^ self applicationName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   291
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   292
companyName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   293
    "Return a companyname which will appear in <lib>.rc"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   295
    ^ 'eXept Software AG'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   296
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   298
description
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   299
    "Return a description string which will appear in vc.def / bc.def"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   300
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
    ^ 'Class Library'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
legalCopyright
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
    "Return a copyright string which will appear in <lib>.rc"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   306
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
    ^ 'Copyright eXept Software AG 1998-2011'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
productName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
    "Return a product name which will appear in <lib>.rc"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   312
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   313
    ^ 'eXept addOns'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   314
! !
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
1499
26a16a04219b Package renamed from exept:regression to stx:goodies/regression. Hooray!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1497
diff changeset
   316
!stx_goodies_regression class methodsFor:'documentation'!
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   317
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   318
version
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   319
    ^ '$Header$'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
version_CVS
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   323
    ^ '$Header$'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   324
! !
768
ad7d42dec0d5 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 744
diff changeset
   325