-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"installation": "Installation", | ||
"features": "Features" | ||
"features": "Features", | ||
"getting-started": "Getting started" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
tags: ["multitest", "getting started"] | ||
--- | ||
|
||
import { Cards, Card } from "nextra/components"; | ||
|
||
# Getting started | ||
|
||
This unit is designed to help you quickly become familiar with the fundamental aspects of testing | ||
smart contracts using **`MultiTest`**. It provides a practical example and best practices to ensure | ||
a smooth start with using **`MultiTest`** for testing smart contracts. In the following chapters, | ||
you will be: | ||
|
||
- designing example [**counter**](getting-started/counter.mdx) smart contract, | ||
- [**writing tests**](getting-started/writing-tests.mdx) for the counter smart contract. | ||
|
||
The example **counter** smart contract and all test cases are provided in two versions: one using | ||
pure CosmWasm libraries and the other using the Sylvia framework. The functionality of the | ||
**counter** smart contract is the same in both versions. | ||
|
||
<Cards> | ||
<Card title="Counter" href="getting-started/counter" icon="" children="" /> | ||
<Card title="Writing tests" href="getting-started/writing-tests" icon="" children="" /> | ||
</Cards> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
tags: ["multitest", "getting started", "counter"] | ||
--- | ||
|
||
# Counter | ||
|
||
(tbd) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
tags: ["multitest", "getting started", "writing tests"] | ||
--- | ||
|
||
# Writing tests | ||
|
||
(tbd) |