Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 3.34 KB

README_PYPI.md

File metadata and controls

60 lines (41 loc) · 3.34 KB

TestSuite

Chat on Telegram

TestSuite is a framework designed to simplify development and testing of Everscale contracts. It contains lightweight blockchain emulator making it easy to develop contracts in a TDD-friendly style.

Features:

  • Speed - perform dozens of tests in just seconds.
  • Complex test scenarios - using Python as a scripting language allows you to create testing scenarios of varying complexity.
  • Deep Integration - access all internal messages, measure gas and control time.
  • Easy installation - use pip install tonos-ts4 to install TestSuite on your local Windows, Linux or macOS. You can also easily compile it from source if needed.

See tutorials for self-documented examples of framework usage.

List of tutorials

Quick Start

Warning You might need to replace python and pip with python3 and pip3 if you are running Linux or macOS.

If you have Python 3.6-3.10, pip and git installed on your system, you can proceed with the following steps.

  • Install tonos-ts4 package:
pip install tonos-ts4
  • Download tutorials from GitHub:
git clone git@github.com:EverscaleGuild/TestSuite.git
  • ... and run the tutorials:
cd TestSuite/tutorials
python tutorial01_getters.py

For more information, visit TestSuite's documentation.

Thanks

Inspired by TON Labs / TestSuite4