microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/test/README.md
30lines · modecode
| 1 | # Tests |
| 2 | |
| 3 | .vscode/settings.json |
| 4 | |
| 5 | ```json |
| 6 | { |
| 7 | "dotnet.unitTests.runSettingsPath": "./.runsettings" |
| 8 | } |
| 9 | ``` |
| 10 | |
| 11 | |
| 12 | .runsettings |
| 13 | ```xml |
| 14 | <?xml version="1.0" encoding="utf-8"?> |
| 15 | <RunSettings> |
| 16 | <RunConfiguration> |
| 17 | <EnvironmentVariables> |
| 18 | <MY_VAR>test_value</MY_VAR> |
| 19 | <TEST_CONVERSATIONID>19:9f2af1bee7cc4a71af25ac72478fd5c6@thread.tacv2</TEST_CONVERSATIONID> |
| 20 | <AzureAd__Instance>https://login.microsoftonline.com/</AzureAd__Instance> |
| 21 | <AzureAd__ClientId></AzureAd__ClientId> |
| 22 | <AzureAd__TenantId></AzureAd__TenantId> |
| 23 | <AzureAd__ClientCredentials__0__SourceType>ClientSecret</AzureAd__ClientCredentials__0__SourceType> |
| 24 | <AzureAd__ClientCredentials__0__ClientSecret></AzureAd__ClientCredentials__0__ClientSecret> |
| 25 | <Logging__LogLevel__Default>Warning</Logging__LogLevel__Default> |
| 26 | <Logging__LogLevel__Microsoft.Bot>Information</Logging__LogLevel__Microsoft.Bot> |
| 27 | </EnvironmentVariables> |
| 28 | </RunConfiguration> |
| 29 | </RunSettings> |
| 30 | ``` |