-
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.
Merge pull request #13 from Nyan11/better_traits_tests
Change traits methods to serialize
- Loading branch information
Showing
20 changed files
with
89 additions
and
262 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
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
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
This file was deleted.
Oops, something went wrong.
10 changes: 5 additions & 5 deletions
10
...h-Serialization/StashTestTraits2.class.st → ...sh-Serialization/StashTestTraits.class.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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
Class { | ||
#name : #StashTestTraits2, | ||
#name : #StashTestTraits, | ||
#superclass : #Object, | ||
#traits : 'TStashTest4', | ||
#classTraits : 'TStashTest4 classTrait', | ||
#traits : 'TStashTest', | ||
#classTraits : 'TStashTest classTrait', | ||
#instVars : [ | ||
'model4' | ||
], | ||
#category : #'Stash-Serialization-test-cases' | ||
} | ||
|
||
{ #category : #initialization } | ||
StashTestTraits2 >> initialize [ | ||
StashTestTraits >> initialize [ | ||
|
||
model4 := StashTestTraitsModel new. | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
StashTestTraits2 >> model4 [ | ||
StashTestTraits >> model4 [ | ||
|
||
^ model4 | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
Class { | ||
#name : #StashTestTraitsSubClass, | ||
#superclass : #StashTestTraits, | ||
#category : #'Stash-Serialization-test-cases' | ||
} |
Oops, something went wrong.