microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/close-pull-request

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

24lines · modecode

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