[squeak-dev] The Trunk: ST80Tests-nice.2.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 16 16:30:22 UTC 2013


Nicolas Cellier uploaded a new version of ST80Tests to project The Trunk:
http://source.squeak.org/trunk/ST80Tests-nice.2.mcz

==================== Summary ====================

Name: ST80Tests-nice.2
Author: nice
Time: 16 December 2013, 5:30:14.254 pm
UUID: 7ee5426b-73f1-48ac-8ec4-3943dc452cb6
Ancestors: ST80Tests-fbs.1

MVCToolBuilderTests are kind of TestCase and belong to ST80Tests

=============== Diff against ST80Tests-fbs.1 ===============

Item was added:
+ ToolBuilderTests subclass: #MVCToolBuilderTests
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'ST80Tests'!
+ 
+ !MVCToolBuilderTests commentStamp: 'ar 2/11/2005 15:02' prior: 0!
+ Tests for the MVC tool builder.!

Item was added:
+ ----- Method: MVCToolBuilderTests>>acceptWidgetText (in category 'support') -----
+ acceptWidgetText
+ 	widget hasUnacceptedEdits: true.
+ 	widget controller accept.!

Item was added:
+ ----- Method: MVCToolBuilderTests>>changeListWidget (in category 'support') -----
+ changeListWidget
+ 	widget changeModelSelection: widget getCurrentSelectionIndex + 1.!

Item was added:
+ ----- Method: MVCToolBuilderTests>>expectedButtonSideEffects (in category 'support') -----
+ expectedButtonSideEffects
+ 	^#(getState)!

Item was added:
+ ----- Method: MVCToolBuilderTests>>fireButtonWidget (in category 'support') -----
+ fireButtonWidget
+ 	widget performAction.!

Item was added:
+ ----- Method: MVCToolBuilderTests>>setUp (in category 'support') -----
+ setUp
+ 	super setUp.
+ 	builder := MVCToolBuilder new.!

Item was added:
+ ----- Method: MVCToolBuilderTests>>tearDown (in category 'support') -----
+ tearDown
+ 	ScreenController new restoreDisplay.
+ 	super tearDown!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testAddAction (in category 'tests-not applicable') -----
+ testAddAction
+ 	"MVCToolBuilder does not implement #buildPluggableMenu:"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testAddTargetSelectorArgumentList (in category 'tests-not applicable') -----
+ testAddTargetSelectorArgumentList
+ 	"MVCToolBuilder does not implement #buildPluggableMenu:"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testButtonFiresBlock (in category 'tests-not applicable') -----
+ testButtonFiresBlock
+ 	"MVC buttons only support action Symbols"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testButtonFiresMessage (in category 'tests-not applicable') -----
+ testButtonFiresMessage
+ 	"MVC buttons only support action Symbols, not MessageSends"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testButtonInitiallyDisabled (in category 'tests-not applicable') -----
+ testButtonInitiallyDisabled
+ 	"MVC does not have button enablement"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testButtonInitiallyDisabledSelector (in category 'tests-not applicable') -----
+ testButtonInitiallyDisabledSelector
+ 	"MVC does not have button enablement"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testGetButtonColor (in category 'tests-not applicable') -----
+ testGetButtonColor
+ 	"MVC buttons do not have color"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testGetButtonEnabled (in category 'tests-not applicable') -----
+ testGetButtonEnabled
+ 	"MVC does not have button enablement"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testGetInputFieldColor (in category 'tests-not applicable') -----
+ testGetInputFieldColor
+ 	"MVC input fields do not have color"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testGetPanelChildren (in category 'tests-not applicable') -----
+ testGetPanelChildren
+ 	"MVC panels do not allow changing children"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testGetTextColor (in category 'tests-not applicable') -----
+ testGetTextColor
+ 	"not supported in MVC"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testGetWindowChildren (in category 'tests-not applicable') -----
+ testGetWindowChildren
+ 	"not supported in MVC"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testGetWindowLabel (in category 'tests-not applicable') -----
+ testGetWindowLabel
+ 	"not supported in MVC"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testTreeExpandPath (in category 'tests-not applicable') -----
+ testTreeExpandPath
+ 	"MVCToollBuilder does not implement trees"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testTreeExpandPathFirst (in category 'tests-not applicable') -----
+ testTreeExpandPathFirst
+ 	"MVCToollBuilder does not implement trees"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testTreeGetSelectionPath (in category 'tests-not applicable') -----
+ testTreeGetSelectionPath
+ 	"MVCToollBuilder does not implement trees"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testTreeRoots (in category 'tests-not applicable') -----
+ testTreeRoots
+ 	"MVCToollBuilder does not implement trees"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testTreeWidgetID (in category 'tests-not applicable') -----
+ testTreeWidgetID
+ 	"MVCToollBuilder does not implement trees"!

Item was added:
+ ----- Method: MVCToolBuilderTests>>testWindowCloseAction (in category 'tests-not applicable') -----
+ testWindowCloseAction
+ 	"This can only work if we're actually run in MVC"
+ 	World isNil ifTrue: [super testWindowCloseAction]!



More information about the Squeak-dev mailing list