stx_goodies_sunit.st
author Stefan Vogel <sv@exept.de>
Tue, 20 Mar 2007 00:00:09 +0100
changeset 173 6fe46bec2948
parent 172 0367c635f587
child 176 fc138aa47345
permissions -rw-r--r--
Category change

"{ Package: 'stx:goodies/sunit' }"

LibraryDefinition subclass:#stx_goodies_sunit
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'* Projects & Packages *'
!


!stx_goodies_sunit class methodsFor:'description'!

preRequisites
    ^ #(
        #'stx:libbasic'    "OrderedCollection - referenced by TestResult>>tests "
        #'stx:libtool'    "XPToolbarIconLibrary - referenced by TestRunner class>>defaultIcon "
        #'stx:libview'    "Color - referenced by TestRunner>>displayNormalColorInProgress "
        #'stx:libview2'    "ColorValue - referenced by TestRunner>>displayYellow "
    )
! !

!stx_goodies_sunit class methodsFor:'description - contents'!

classNamesAndAttributes
    ^ #(
        "<className> or (<className> attributes...) in load order"
        (ExampleSetTest #autoload)
        (ExampleTestResource #autoload)
        (ResumableTestFailureTestCase #autoload)
        SUnitDelay
        SUnitNameResolver
        (SUnitTest #autoload)
        (SimpleTestResourceTestCase #autoload)
        TestCase
        TestFailure
        TestResource
        TestResult
        TestRunner
        TestSuite
        (TestSuitesHierarchyScriptTest #autoload)
        (TestSuitesScriptTest #autoload)
        TestSuitesScripter
        #'stx_goodies_sunit'
        ResumableTestFailure
    )
!

extensionMethodNames
    ^ #(
    )
! !

!stx_goodies_sunit class methodsFor:'description - project information'!

companyName
    "Return a companyname which will appear in <lib>.rc"

    ^ 'eXept Software AG'
!

description
    "Return a description string which will appear in nt.def / bc.def"

    ^ 'Smalltalk/X Class library'
!

legalCopyright
    "Return a copyright string which will appear in <lib>.rc"

    ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
!

productName
    "Return a product name which will appear in <lib>.rc"

    ^ 'Smalltalk/X'
! !

!stx_goodies_sunit class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/sunit/stx_goodies_sunit.st,v 1.5 2007-03-19 23:00:09 stefan Exp $'
! !