stx_goodies_sunit.st
author Stefan Vogel <sv@exept.de>
Thu, 21 Sep 2006 10:47:20 +0200
changeset 149 4fe695222d0a
child 156 6a4aebabacbd
permissions -rw-r--r--
initial checkin

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

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


!stx_goodies_sunit class methodsFor:'description - contents'!

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

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.1 2006-09-21 08:47:20 stefan Exp $'
! !