Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/smarr/smark

Write Benchmarks like Tests
https://github.com/smarr/smark

benchmarking-framework benchmarks pharo smalltalk squeak

Last synced: about 1 month ago
JSON representation

Write Benchmarks like Tests

Awesome Lists containing this project

README

        

# 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.
```