microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
docs/update-release-process

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

25lines · modecode

1
2using Microsoft.Teams.Api.Clients;
3
4namespace Microsoft.Teams.Api.Tests.Clients;
5
6public class ApiClientTests
7{
8 [Fact]
9 public void ApiClient_Default()
10 {
11 var serviceUrl = "https://api.botframework.com";
12 var apiClient = new ApiClient(serviceUrl);
13
14 Assert.Equal(serviceUrl, apiClient.ServiceUrl);
15 }
16
17 [Fact]
18 public void ApiClient_Users_Default()
19 {
20 var serviceUrl = "https://api.botframework.com";
21 var apiClient = new ApiClient(serviceUrl);
22
23 Assert.Equal(serviceUrl, apiClient.ServiceUrl);
24 }
25}