You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sdks/sdk-contract-testing.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import { Callout } from "@/mdx/components";
9
9
10
10
<Callouttitle="Beta"type="warning">
11
11
12
-
SDK contract testing features are considered `beta` maturity. Breaking changes may occur and not all languages are yet supported. Currently SDK testing is supported for TypeScript, Python, Go, Java, and Ruby.
12
+
SDK contract testing features are considered `beta` maturity. Breaking changes may occur and not all languages are yet supported. Currently SDK testing is supported for TypeScript, Python, Go, Java, Ruby, and C#.
Copy file name to clipboardExpand all lines: docs/sdks/sdk-contract-testing/customizing-sdk-tests.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,14 +73,14 @@ workflows:
73
73
74
74
## Grouping tests
75
75
76
-
By default, all tests will be generated into a single file related to the main SDK class for example `sdk.test.ts`, `test_sdk.py`, `SDKTest.java`, or `test_sdk.rb`. This can be configured by adding a `x-speakeasy-test-group` extension to the workflow which will determine which tests will be grouped together in seperate test files.
76
+
By default, all tests will be generated into a single file related to the main SDK class for example `sdk.test.ts`, `test_sdk.py`, `SDKTest.java`, `test_sdk.rb`, or `SDKTests.cs`. This can be configured by adding a `x-speakeasy-test-group` extension to the workflow which will determine which tests will be grouped together in seperate test files.
77
77
78
78
```yaml
79
79
arazzo: 1.0.0
80
80
# ...
81
81
workflows:
82
82
- workflowId: some-test
83
-
x-speakeasy-test-group: user # All tests in the user group will end up in the `user.test.ts`/`test_user.py`/`user_test.go`/`test_user.rb` files
83
+
x-speakeasy-test-group: user # All tests in the user group will end up in the `user.test.ts`/`test_user.py`/`user_test.go`/`test_user.rb`/`UserTests.cs` files
0 commit comments