smalltalk
/
osmo-st-all
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-all/grease/Tests/Core/GRIntervalTest.st

53 lines
830 B
Smalltalk

GRCollectionTest subclass: GRIntervalTest [
<comment: nil>
<category: 'Grease-Tests-Core'>
allowsDuplicateValues [
<category: 'configuration'>
^false
]
arbitraryCollection [
<category: 'configuration'>
^1 to: 4
]
collectionClass [
<category: 'configuration'>
^Interval
]
emptyCollection [
<category: 'configuration'>
^1 to: 0
]
isValidNewSequencedResponseClass: aClass [
<category: 'configuration'>
^aClass == SequenceableCollection
or: [aClass allSuperclasses includes: SequenceableCollection]
]
isExtensible [
<category: 'testing-ansi'>
^false
]
isInitializable [
<category: 'testing-ansi'>
^false
]
isSequenced [
<category: 'testing-ansi'>
^false
]
isSequencedReadable [
<category: 'testing-ansi'>
^true
]
]