-
## Expected Behavior
Say I expect `testWorkflow` to invoke `testActivity` twice with certain arguments
```
env.OnActivity(testActivity, mock.Anything, testActivityParams{...}).Return(...).Times(2) …
-
gpt-4-0125-preview suggested coverage for: Test
[Stakwork Run](https://jobs.stakwork.com/admin/projects/35872366)
Test Cases for GetFeaturesByWorkspaceUuid:
- Valid UUID with Features Availab…
-
ユニットテストのコードを早めに実装してください。
-
-
The best way to use mock is with a program that will automatically generate the code for the mocks based on the interfaces.
`mockery` pioneered this approach but has some current limitations such as …
-
I wish testify was able to watch the test files and after editing one of these, it ran automatically after a short time.
This is kind of what WallabyJs achieves and it's pretty awesome :-)
-
I ran a `docker build` on `main` and had a unit test fail. After running the same exact command again, the test passed, leading me to believe that it's intermittent... which is concerning given that i…
-
I'd like to be able to run something like:
gotags . ../../necro351/gotags ../../strechr/testify
and build a ctags file that includes things that I import.
-
There are already some test helpers like `assertEq`, `assert`, `failIfError`, `assertNotEq`.
This issue is about standardizing their usage such as removing duplicate behavior or extracting them to …
-
Given an input of `{"x": "abc", "y": "11.3.0"}`, I expect these two rules to behave the same:
- `y gt 11.1.0-0 and not(x IN ["cde","fgh"])`
- `not(x IN ["cde","fgh"]) and y gt 11.1.0-0`
But the…