exept_regression.st
author Claus Gittinger <cg@exept.de>
Mon, 01 Aug 2011 09:06:40 +0200
changeset 602 b1c23d9f4836
child 607 2536a136bec6
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
602
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'exept:regression' }"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
LibraryDefinition subclass:#exept_regression
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'* Projects & Packages *'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!exept_regression class methodsFor:'description'!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
excludedFromPreRequisites
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    "list all packages which should be ignored in the automatic
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
     preRequisites scan. See #preRequisites for more."
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
    ^ #(
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
    )
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
preRequisites
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
    "list all required packages.
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
     This list can be maintained manually or (better) generated and
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
     updated by scanning the superclass hierarchies and looking for
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
     global variable accesses. (the browser has a menu function for that)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
     Howevery, often too much is found, and you may want to explicitely
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
     exclude individual packages in the #excludedFromPrerequisites method."
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
    ^ #(
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
        #'stx:libbasic'    "Autoload - superclass of RegressionTests::BehaviorLookupObjectTests "
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
    )
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
! !
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
!exept_regression class methodsFor:'description - contents'!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
classNamesAndAttributes
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
    "lists the classes which are to be included in the project.
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
     Each entry in the list may be: a single class-name (symbol),
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
     or an array-literal consisting of class name and attributes.
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    ^ #(
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
        "<className> or (<className> attributes...) in load order"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
        (#'RegressionTests::AssociationTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
        (#'RegressionTests::BecomeTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
        (#'RegressionTests::BehaviorLookupObjectTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
        (#'RegressionTests::BinaryIOTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
        (#'RegressionTests::BinaryTreeTester' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
        (#'RegressionTests::BlockTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
        (#'RegressionTests::CharacterEncoderTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
        (#'RegressionTests::CharacterSetTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
        (#'RegressionTests::CharacterTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
        (#'RegressionTests::ClassWithoutVersionMethod' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
        (#'RegressionTests::CollectionTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
        (#'RegressionTests::CompilerTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
        (#'RegressionTests::ComplexTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
        (#'RegressionTests::ContextTest2' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
        (#'RegressionTests::CoverageInstrumentationTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
        (#'RegressionTests::DebuggerTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
        (#'RegressionTests::DeepCopyTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
        (#'RegressionTests::DelayTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
        (#'RegressionTests::DictionaryTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
        (#'RegressionTests::DoubleMetaphoneStringComparatorTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
        (#'RegressionTests::EnumerationTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
        (#'RegressionTests::ExceptionTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
        (#'RegressionTests::ExternalInterfaceTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
        (#'RegressionTests::ExternalStreamTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
        (#'RegressionTests::FileOpenTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
        (#'RegressionTests::FileStreamTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
        (#'RegressionTests::FloatTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
        (#'RegressionTests::FractionTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
        (#'RegressionTests::GCTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
        (#'RegressionTests::GraphicDrawingTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
        (#'RegressionTests::HTMLParserTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
        (#'RegressionTests::ImageReaderTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
        (#'RegressionTests::IntegerTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
        (#'RegressionTests::JITTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
        (#'RegressionTests::JavaScriptTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
        (#'RegressionTests::KoelnerPhoneticCodeStringComparatorTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
        (#'RegressionTests::LabelResizingTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
        (#'RegressionTests::LargeFloatTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
        (#'RegressionTests::ManyProcessesTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
        (#'RegressionTests::MeasurementValueTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
        (#'RegressionTests::MemoryTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
        (#'RegressionTests::MetaNumbersTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
        (#'RegressionTests::MiracodeStringComparatorTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
        (#'RegressionTests::MySQLSoundexStringComparatorTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
        (#'RegressionTests::NumberTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
        (#'RegressionTests::OS_OLE_Tests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
        (#'RegressionTests::OperatingSystemTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
        (#'RegressionTests::OperationInQueueTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
        (#'RegressionTests::PTYTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
        (#'RegressionTests::ParserTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
        (#'RegressionTests::ParserTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
        (#'RegressionTests::PipeStreamTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
        (#'RegressionTests::PowerSetTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
        (#'RegressionTests::ProcessTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
        (#'RegressionTests::ProjectDefinitionTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
        (#'RegressionTests::QueueTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
        (#'RegressionTests::QuickTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
        (#'RegressionTests::ScaledDecimalTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
        (#'RegressionTests::SelectorNamespacesTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
        (#'RegressionTests::SemaphoreTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
        (#'RegressionTests::ServerSocketTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
        (#'RegressionTests::SharedQueueTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
        (#'RegressionTests::SmallIntegerTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
        (#'RegressionTests::SortTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
        (#'RegressionTests::SoundexStringComparatorTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
        (#'RegressionTests::StackFrameTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
        (#'RegressionTests::StringTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
        (#'RegressionTests::TestDialogs1' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
        (#'RegressionTests::TimeAndDateTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
        (#'RegressionTests::TimeDurationTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
        (#'RegressionTests::URLTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
        (#'RegressionTests::UTF8TestClass' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
        (#'RegressionTests::WeakCollectionTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
        (#'RegressionTests::Win32OperatingSystemTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
        (#'RegressionTests::WrongMethodCalledTest' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
        (#'RegressionTests::XMLCoderTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
        (#'RegressionTests::ZipArchiveTests' autoload)
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
        #'exept_regression'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
    )
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
extensionMethodNames
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
    "lists the extension methods which are to be included in the project.
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
     Entries are 2-element array literals, consisting of class-name and selector."
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    ^ #(
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
    )
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
! !
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
!exept_regression class methodsFor:'description - project information'!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
applicationIconFileName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
    "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
   137
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
    ^ nil
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
    "/ ^ self applicationName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
companyName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
    "Return a companyname which will appear in <lib>.rc"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
    ^ 'eXept Software AG'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
description
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
    "Return a description string which will appear in vc.def / bc.def"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
    ^ 'Class Library'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
legalCopyright
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
    "Return a copyright string which will appear in <lib>.rc"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
    ^ 'Copyright eXept Software AG 1998-2011'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
productName
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
    "Return a product name which will appear in <lib>.rc"
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
    ^ 'eXept addOns'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
! !
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
!exept_regression class methodsFor:'documentation'!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
version
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
    ^ '$Header$'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
!
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
version_CVS
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
    ^ '$Header$'
b1c23d9f4836 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
! !