microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feature/user-agent-header

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Tests/Microsoft.Teams.Api.Tests/Clients/BotClientTests.cs

25lines · modecode

1using Microsoft.Teams.Api.Clients;
2
3namespace Microsoft.Teams.Api.Tests.Clients;
4
5public 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}