stx_goodies_sunit.st
author Claus Gittinger <cg@exept.de>
Thu, 31 Mar 2016 23:50:30 +0200
changeset 642 a5f5bd81a1e5
parent 620 637f538bfcd1
child 664 e31b2e7b658d
child 666 1faf9b4ab2ef
permissions -rw-r--r--
#REFACTORING class: TestResult changed: #exceptions
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
620
637f538bfcd1 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
     1
"{ Encoding: utf8 }"
637f538bfcd1 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
     2
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     3
"{ Package: 'stx:goodies/sunit' }"
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     4
595
a8f566c8de80 removed unneeded method
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
     5
"{ NameSpace: Smalltalk }"
a8f566c8de80 removed unneeded method
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
     6
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     7
LibraryDefinition subclass:#stx_goodies_sunit
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     8
	instanceVariableNames:''
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     9
	classVariableNames:''
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    10
	poolDictionaries:''
173
6fe46bec2948 Category change
Stefan Vogel <sv@exept.de>
parents: 172
diff changeset
    11
	category:'* Projects & Packages *'
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
!
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
245
49ef4f1295cd changed: #extensionsVersion_CVS
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    14
!stx_goodies_sunit class methodsFor:'documentation'!
49ef4f1295cd changed: #extensionsVersion_CVS
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    15
457
ae823abf01c0 comment
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
    16
documentation
ae823abf01c0 comment
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
    17
"
592
5eaceb032ddc class: stx_goodies_sunit
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
    18
    Package documentation:
5eaceb032ddc class: stx_goodies_sunit
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
    19
5eaceb032ddc class: stx_goodies_sunit
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
    20
    This library contains the sunit test framework,
5eaceb032ddc class: stx_goodies_sunit
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
    21
    including an old (now obsolete) version of the test runner.
5eaceb032ddc class: stx_goodies_sunit
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
    22
    There are now both an improved multi-pane testRunner application
5eaceb032ddc class: stx_goodies_sunit
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
    23
    and also a testrunner integrated in the browser (shown whenever a testcase class
5eaceb032ddc class: stx_goodies_sunit
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
    24
    is selected).
457
ae823abf01c0 comment
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
    25
"
245
49ef4f1295cd changed: #extensionsVersion_CVS
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    26
! !
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    27
156
6a4aebabacbd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
    28
!stx_goodies_sunit class methodsFor:'description'!
6a4aebabacbd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
    29
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    30
excludedFromPreRequisites
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    31
    "list all packages which should be ignored in the automatic
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    32
     preRequisites scan. See #preRequisites for more."
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    33
156
6a4aebabacbd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
    34
    ^ #(
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    35
    )
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    36
!
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    37
544
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    38
mandatoryPreRequisites
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    39
    "list all required mandatory packages.
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    40
     Packages are mandatory, if they contain superclasses of the package's classes
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    41
     or classes which are extended by this package.
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    42
     This list can be maintained manually or (better) generated and
544
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    43
     updated by scanning the superclass hierarchies
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    44
     (the browser has a menu function for that)
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    45
     However, often too much is found, and you may want to explicitely
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    46
     exclude individual packages in the #excludedFromPreRequisites method."
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    47
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
    48
    ^ #(
544
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    49
        #'stx:libbasic'    "String - extended "
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    50
        #'stx:libview2'    "ApplicationModel - superclass of TestRunner "
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    51
    )
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    52
!
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    53
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    54
referencedPreRequisites
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    55
    "list all packages containing classes referenced by the packages's members.
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    56
     This list can be maintained manually or (better) generated and
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    57
     updated by looking for global variable accesses
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    58
     (the browser has a menu function for that)
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    59
     However, often too much is found, and you may want to explicitely
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    60
     exclude individual packages in the #excludedFromPreRequisites method."
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    61
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    62
    ^ #(
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    63
        #'stx:libbasic2'    "SplittingWriteStream - referenced by TestResultStX>>performCase: "
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
    64
        #'stx:libview'    "Color - referenced by TestRunner>>displayNormalColorInProgress "
156
6a4aebabacbd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
    65
    )
6a4aebabacbd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
    66
! !
6a4aebabacbd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
    67
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    68
!stx_goodies_sunit class methodsFor:'description - contents'!
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    69
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    70
classNamesAndAttributes
213
f40a88c5ec53 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
    71
    "lists the classes which are to be included in the project.
f40a88c5ec53 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
    72
     Each entry in the list may be: a single class-name (symbol),
f40a88c5ec53 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
    73
     or an array-literal consisting of class name and attributes.
f40a88c5ec53 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
    74
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
f40a88c5ec53 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
    75
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    76
    ^ #(
343
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    77
        "<className> or (<className> attributes...) in load order"
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    78
        (ExampleTestResource autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    79
        SUnitDelay
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    80
        SUnitNameResolver
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    81
        TestAsserter
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    82
        TestFailure
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    83
        TestResult
476
700cd1a9964c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
    84
        TestResultReporter
343
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    85
        TestRunner
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    86
        TestSuite
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    87
        (TestSuitesCompoundScriptTest autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    88
        (TestSuitesHierarchyScriptTest autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    89
        (TestSuitesScriptTest autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    90
        TestSuitesScripter
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    91
        #'stx_goodies_sunit'
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    92
        ResumableTestFailure
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    93
        TestCase
588
0d69293eb505 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    94
        TestCaseWithArguments
343
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    95
        TestResource
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    96
        (ExampleSetTest autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    97
        (ResumableTestFailureTestCase autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    98
        (SUnitTest autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
    99
        (SimpleTestResource autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   100
        (SimpleTestResourceTestCase autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   101
        (FailingTestResourceTestCase autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   102
        (ManyTestResourceTestCase autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   103
        (SimpleTestResourceA autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   104
        (SimpleTestResourceA1 autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   105
        (SimpleTestResourceA2 autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   106
        (SimpleTestResourceB autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   107
        (SimpleTestResourceB1 autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   108
        (SimpleTestResourceCircular autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   109
        (SimpleTestResourceCircular1 autoload)
ae5570567e27 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
   110
        (CircularTestResourceTestCase autoload)
349
1cd3a8910934 Refactored to use TestResultOutcome
vrany
parents: 343
diff changeset
   111
        TestCaseOutcome
368
4ab674c862a7 Regenerate build files
vrany
parents: 367
diff changeset
   112
        TestResultStX
408
vrany
parents: 404
diff changeset
   113
        TestResultForRunWithDebug
440
4a544fda4bc8 changed: #classNamesAndAttributes
vrany
parents: 427
diff changeset
   114
        (SUnitTests2 autoload)
518
9af19c20c2d6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   115
        TestCoverageReporter
9af19c20c2d6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   116
        MetricsReporter
561
aef9302c9dd9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 545
diff changeset
   117
        TestSkipped
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   118
    )
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   119
!
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   120
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   121
extensionMethodNames
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   122
    "lists the extension methods which are to be included in the project.
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   123
     Entries are 2-element array literals, consisting of class-name and selector."
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   124
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   125
    ^ #(
427
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   126
        Block sunitEnsure:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   127
        Block sunitOn:do:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   128
        GenericException sunitAnnounce:toResult:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   129
        GenericException sunitExitWith:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   130
        Object sunitAddDependent:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   131
        Object sunitChanged:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   132
        Object sunitRemoveDependent:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   133
        String sunitAsSymbol
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   134
        String sunitMatch:
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   135
        String sunitSubStrings
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   136
        Symbol sunitAsClass
24632c550c74 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
   137
        'GenericException class' sunitSignalWith:
544
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   138
        Behavior sunitSelectors
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   139
        Class sunitName
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   140
    )
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   141
! !
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   142
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   143
!stx_goodies_sunit class methodsFor:'description - project information'!
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   144
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   145
companyName
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   146
    "Return a companyname which will appear in <lib>.rc"
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   147
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   148
    ^ 'eXept Software AG'
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   149
!
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   150
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   151
description
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   152
    "Return a description string which will appear in nt.def / bc.def"
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   153
585
e77be448192c changed: #description
Claus Gittinger <cg@exept.de>
parents: 561
diff changeset
   154
    ^ 'Smalltalk/X Unit Testing'
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   155
!
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   156
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   157
legalCopyright
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   158
    "Return a copyright string which will appear in <lib>.rc"
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   159
620
637f538bfcd1 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
   160
    ^ 'Copyright eXept Software AG 2007'
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   161
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   162
    "Modified: / 08-11-2007 / 16:57:33 / cg"
544
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   163
!
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   164
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   165
productName
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   166
    "Return a product name which will appear in <lib>.rc"
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   167
9e6bee79a390 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 543
diff changeset
   168
    ^ 'Smalltalk/X'
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   169
! !
177
f46c94410480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
   170
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   171
!stx_goodies_sunit class methodsFor:'description - svn'!
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   172
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   173
svnRevisionNr
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   174
    "Return a SVN revision number of myself.
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   175
     This number is updated after a commit"
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   176
543
0426c166e29d automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 518
diff changeset
   177
    ^ "$SVN-Revision:"'Nicht versioniertes Verzeichnis'"$"
235
d06056977c51 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 222
diff changeset
   178
! !
d06056977c51 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 222
diff changeset
   179
251
9c8dafcfbf66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   180
!stx_goodies_sunit class methodsFor:'documentation'!
235
d06056977c51 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 222
diff changeset
   181
356
17065e3b6395 automatic checkIn
vrany
parents: 349
diff changeset
   182
version
620
637f538bfcd1 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
   183
    ^ '$Header$'
356
17065e3b6395 automatic checkIn
vrany
parents: 349
diff changeset
   184
!
17065e3b6395 automatic checkIn
vrany
parents: 349
diff changeset
   185
235
d06056977c51 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 222
diff changeset
   186
version_CVS
620
637f538bfcd1 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
   187
    ^ '$Header$'
251
9c8dafcfbf66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   188
!
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   189
222
8e6f482297fa Jan's 4.1 version
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   190
version_SVN
620
637f538bfcd1 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
   191
    ^ '$Id$'
149
4fe695222d0a initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   192
! !
543
0426c166e29d automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 518
diff changeset
   193