diff --git a/docs/src/app/page.tsx b/docs/src/app/page.tsx index edf8b9e..caab70a 100644 --- a/docs/src/app/page.tsx +++ b/docs/src/app/page.tsx @@ -44,7 +44,7 @@ const HeroSection = () => {
- A test generator based on the Branching Tree Technique + A smart contract test generator based on the Branching Tree Technique
{`HashPairTest -├── It should never revert. ├── When first arg is smaller than second arg │ └── It should match the result of keccak256(a,b). └── When first arg is bigger than second arg @@ -112,26 +111,26 @@ const BulloakFeaturesSection = () => {bulloak is a powerful tool that brings the Branching Tree Technique to life for developers. It automates the process of creating comprehensive test suites based on BTT specifications. {" "} - Read the full README on GitHub. + Check out the full README on GitHub.
{` Bulloak ├── Scaffold Command -│ ├─── Automatically generates test files from .tree specifications +│ ├─── Generates test files from .tree specifications │ │ ├── Creates modifiers for conditions │ │ └── Generates test functions for actions │ ├─── Reports syntax errors in your specification │ └─── Provides a full AST for easy extension ├── Check Command -│ ├── Ensures code matches its specification +│ ├── Ensures implementation matches its specification │ ├── Reports missing tests │ └── Identifies structural mismatches ├── Multiple Tree Support │ └── Define multiple test trees in a single file ├── Flexible Syntax -│ ├── Supports 'when' and 'given' for conditions +│ ├── Supports 'when' and 'given' for conditions and states, respectively │ └── Case-insensitive keywords └── Automatic Fixes ├── Adds missing functions @@ -145,7 +144,6 @@ Bulloak
{` HashPairTest -├── It should never revert. ├── When first arg is smaller than second arg │ └── It should match the result of │ keccak256(abi.encodePacked(a,b)). @@ -258,9 +256,9 @@ const Footer = () => {
Resources/
-
@@ -281,7 +279,7 @@ const Footer = () => {- ├──Presentation by Paul R. Berg at EthCC[6]
-- ├──Presentation by Paul R. Berg at Devconnect
- ├──BTT examples
+- ├──Paul Berg's presentation at EthCC[6]
+- ├──Paul Berg's presentation at Solidity Summit
- ├──Ascii Tree Generator for VSCode
- └──Syntax highlighting for tree files for VSCode