-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Model: - change relation of testedClass from being with TClass to TType - mooseName for ActArgument Importer: - from OpenTelemetry: skip spans that were previously skipped when importing values - order fixtures: receiver, arguments, expected Exporter: - handle receiver fixture - dispatch part of helper naming to value with `roleName` - fix JUnit 5 - ensure valid package names - work around VerveineJ problems by adding nil checks where they should normally never occur
- Loading branch information
1 parent
dd4def3
commit 0294066
Showing
38 changed files
with
426 additions
and
278 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
src/Famix-UnitTest-Entities-Extensions/FamixUTAct.extension.st
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
14 changes: 14 additions & 0 deletions
14
src/Famix-UnitTest-Entities-Extensions/FamixUTActArgument.extension.st
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Extension { #name : 'FamixUTActArgument' } | ||
|
||
{ #category : '*Famix-UnitTest-Entities-Extensions' } | ||
FamixUTActArgument >> mooseNameOn: aStream [ | ||
|
||
aStream nextPutAll: 'Argument'. | ||
self value ifNotNil: [ :value | | ||
aStream nextPut: $(. | ||
value mooseNameOn: aStream. | ||
aStream nextPut: $) ]. | ||
act ifNotNil: [ | ||
aStream nextPutAll: ' of '. | ||
act mooseNameOn: aStream ] | ||
] |
4 changes: 2 additions & 2 deletions
4
src/Famix-UnitTest-Entities-Extensions/FamixUTAssertion.extension.st
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
6 changes: 3 additions & 3 deletions
6
src/Famix-UnitTest-Entities-Extensions/FamixUTCase.extension.st
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
4 changes: 2 additions & 2 deletions
4
src/Famix-UnitTest-Entities-Extensions/FamixUTEntity.extension.st
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
4 changes: 2 additions & 2 deletions
4
src/Famix-UnitTest-Entities-Extensions/FamixUTMethod.extension.st
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
4 changes: 2 additions & 2 deletions
4
src/Famix-UnitTest-Entities-Extensions/FamixUTSetUp.extension.st
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
4 changes: 2 additions & 2 deletions
4
src/Famix-UnitTest-Entities-Extensions/FamixUTSuite.extension.st
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
4 changes: 2 additions & 2 deletions
4
src/Famix-UnitTest-Entities-Extensions/FamixUTTearDown.extension.st
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Package { #name : #'Famix-UnitTest-Entities-Extensions' } | ||
Package { #name : 'Famix-UnitTest-Entities-Extensions' } |
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.