Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/badetitou/smarttest
The goal of SmartTest is to provide to the developers the list of tests they should run after they modify their code. With this plugin installed, developers will save time and will develop in a better way (hopefully).
https://github.com/badetitou/smarttest
pharo pharo-smalltalk smalltalk smarttest test-automation test-regression test-runner testing testing-tools
Last synced: about 1 month ago
JSON representation
The goal of SmartTest is to provide to the developers the list of tests they should run after they modify their code. With this plugin installed, developers will save time and will develop in a better way (hopefully).
- Host: GitHub
- URL: https://github.com/badetitou/smarttest
- Owner: badetitou
- License: mit
- Created: 2017-07-07T11:27:45.000Z (over 7 years ago)
- Default Branch: development
- Last Pushed: 2019-09-17T12:44:02.000Z (about 5 years ago)
- Last Synced: 2024-09-25T21:41:11.818Z (about 2 months ago)
- Topics: pharo, pharo-smalltalk, smalltalk, smarttest, test-automation, test-regression, test-runner, testing, testing-tools
- Language: Smalltalk
- Homepage: https://badetitou.fr/projects/smarttest
- Size: 907 KB
- Stars: 6
- Watchers: 5
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SmartTest
Master: [![Master](https://travis-ci.org/badetitou/SmartTest.svg?branch=master)](https://travis-ci.org/badetitou/SmartTest/branches)
Development: [![development](https://travis-ci.org/badetitou/SmartTest.svg?branch=development)](https://travis-ci.org/badetitou/SmartTest/branches)## What is SmartTest ?
SmartTest is a plugin developed in [Pharo](http://pharo.org/). It is an Add-On for Quality Assistant by [Yuriy Tymchuk](http://yuriy.tymch.uk/) and provides new rules and critiques.
But it has also is own implementation of feedback about testingThe goal of SmartTest is to provide to the developers the list of tests they should run after they modify their code.
With this plugin installed, developers will save time and will develop in a better way (hopefully).## Installation
The complete presentation is available [here](https://badetitou.github.io/projects/SmartTest/SmartTest/).
## Development version
Evaluate this code in a Playground to load the SmartTest development version:
```Smalltalk
Metacello new
baseline: #SmartTest;
githubUser: 'badetitou' project: 'SmartTest' commitish: 'development' path: '.';
onWarningLog;
load
```