-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PCBenchmarkSuite>>run, to bench a case without opening a Spec window
- Loading branch information
1 parent
c7d8f35
commit 570d7c3
Showing
77 changed files
with
791 additions
and
624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
Class { | ||
#name : #BlBasicAnimation, | ||
#superclass : #BlBaseAnimation, | ||
#name : 'BlBasicAnimation', | ||
#superclass : 'BlBaseAnimation', | ||
#instVars : [ | ||
'stepBlock' | ||
], | ||
#category : #'BlocBenchs-FPS-Utility' | ||
#category : 'BlocBenchs-FPS-Utility', | ||
#package : 'BlocBenchs-FPS', | ||
#tag : 'Utility' | ||
} | ||
|
||
{ #category : #pulse } | ||
{ #category : 'pulse' } | ||
BlBasicAnimation >> doStep [ | ||
stepBlock cull: target | ||
] | ||
|
||
{ #category : #accessing } | ||
{ #category : 'accessing' } | ||
BlBasicAnimation >> duration [ | ||
|
||
^ 1 minute | ||
] | ||
|
||
{ #category : #accessing } | ||
{ #category : 'accessing' } | ||
BlBasicAnimation >> initialize [ | ||
super initialize. | ||
|
||
self beInfinite. | ||
] | ||
|
||
{ #category : #pulse } | ||
{ #category : 'pulse' } | ||
BlBasicAnimation >> onStepDo: aBlock [ | ||
stepBlock := aBlock | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.