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/GRArrayTest.st

37 lines
495 B
Smalltalk

GRCollectionTest subclass: GRArrayTest [
<comment: nil>
<category: 'Grease-Tests-Core'>
allowsDuplicateValues [
<category: 'configuration'>
^true
]
collectionClass [
<category: 'configuration'>
^Array
]
isExtensible [
<category: 'testing-ansi'>
^false
]
isInitializable [
<category: 'testing-ansi'>
^true
]
isSequenced [
<category: 'testing-ansi'>
^true
]
isSequencedReadable [
<category: 'testing-ansi'>
^true
]
]