SMark

Description

Write Benchmarks like Tests

Details

Source
GitHub
Dialect
pharo (40% confidence)
License
MIT
Stars
13
Forks
7
Created
Sept. 2, 2019
Updated
June 16, 2023
Topics
benchmarking-framework benchmarks pharo smalltalk squeak

Categories

Testing

README excerpt

# SMark
Write Benchmarks like Tests.

SMark is a benchmarking suite for Smalltalk ([Pharo](https://pharo.org) and [Squeak](https://squeak.org) specifically).

## Installation
### Pharo 7+
```smalltalk
Metacello new
    baseline: 'SMark';
    repository: 'github://smarr/SMark';
    load.
```
### Squeak 5.2+
```smalltalk
Installer ensureRecentMetacello.
Metacello new
    baseline: 'SMark';
    repository: 'github://smarr/SMark';
    load.
```
← Back to results