From 2cd5222007e47f03cf441477c87c6e34161bcd7e Mon Sep 17 00:00:00 2001 From: umba <95478197+oxbau@users.noreply.github.com> Date: Fri, 1 Dec 2023 20:30:54 +0300 Subject: [PATCH] Update test-collection.md Hello, I identified some grammatical errors in this section. These are: 1. In the sentence "However, adding any arguments to function signature will enable fuzz testing for this test case," it should be "to the function signature" instead of "to function signature". 2. In the sentence "For example, for a package structured this way," it should be "For example, for a package structured in this way". Thanks. --- docs/src/testing/test-collection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/testing/test-collection.md b/docs/src/testing/test-collection.md index d5561dca1b..3be0eb4e0e 100644 --- a/docs/src/testing/test-collection.md +++ b/docs/src/testing/test-collection.md @@ -2,7 +2,7 @@ Forge considers all functions in your project marked with `#[test]` attribute as tests. By default, test functions run without any arguments. -However, adding any arguments to function signature will enable [fuzz testing](./advanced/fuzz-testing.md) for this +However, adding any arguments to the function signature will enable [fuzz testing](./advanced/fuzz-testing.md) for this test case. Starknet Forge will collect tests only from these places: @@ -21,7 +21,7 @@ Depending on the presence of `tests/lib.cairo` file, the behavior of the test co If there is a `lib.cairo` file in `tests` folder, then it is treated as an entrypoint to the `tests` package from which tests are collected. -For example, for a package structured this way: +For example, for a package structured in this way: ```shell $ tree .