microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Tests/Microsoft.Teams.Api.Tests/Clients/BotClientTests.cs
24lines · modecode
| 1 | |
| 2 | using Microsoft.Teams.Api.Clients; |
| 3 | |
| 4 | namespace Microsoft.Teams.Api.Tests.Clients; |
| 5 | public class BotClientTests |
| 6 | { |
| 7 | [Fact] |
| 8 | public void BotClient_Default() |
| 9 | { |
| 10 | var botClient = new BotClient(); |
| 11 | |
| 12 | Assert.NotNull(botClient.Token); |
| 13 | Assert.NotNull(botClient.SignIn); |
| 14 | } |
| 15 | |
| 16 | |
| 17 | [Fact] |
| 18 | public void UserClient_Default() |
| 19 | { |
| 20 | var userClient = new UserClient(); |
| 21 | |
| 22 | Assert.NotNull(userClient.Token); |
| 23 | } |
| 24 | } |