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