microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/move-activity-implementations

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

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