Skip to content
This repository was archived by the owner on Mar 11, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,17 @@ Class {
BaselineOfStashSerialization >> baseline: spec [

<baseline>
spec for: #common do: [
spec package: #'Stash-Serialization'.
]
spec for: #common do: [ self baselineForCommon: spec ]

]

{ #category : #baselines }
BaselineOfStashSerialization >> baselineForCommon: spec [

<baseline>
spec package: #'Stash-Serialization'.
spec
package: 'Stash-Serialization-Tests'
with: [ spec requires: #( 'Stash-Serialization' ) ]

]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #StashOnlySetTest,
#superclass : #TestCase,
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #tests }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #StashSetterGetterTest,
#superclass : #TestCase,
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #tests }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #StashTest,
#superclass : #TestCase,
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #tests }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'state'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #initialization }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'state'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #initialization }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'state'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #initialization }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'name'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #accessing }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'name'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #accessing }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'name'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #accessing }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Class {
#instVars : [
'model4'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #initialization }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'test'
],
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #accessing }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Class {
#name : #StashTestTraitsSubClass,
#superclass : #StashTestTraits,
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #StashTraitsTest,
#superclass : #TestCase,
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #tests }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Trait {
#name : #TStashTest,
#category : #'Stash-Serialization-test-cases'
#category : #'Stash-Serialization-Tests'
}

{ #category : #'as yet unclassified' }
Expand Down
1 change: 1 addition & 0 deletions src/Stash-Serialization-Tests/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #'Stash-Serialization-Tests' }