-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the bot dialog tests to the integration test project (#183)
- Loading branch information
1 parent
57c64d4
commit e819778
Showing
9 changed files
with
67 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
tests/DentallApp.IntegrationTests/DentallApp.IntegrationTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>disable</Nullable> | ||
|
||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="coverlet.msbuild" Version="3.1.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="FluentAssertions" Version="6.10.0" /> | ||
<PackageReference Include="JustMock" Version="2023.1.117.1" /> | ||
<PackageReference Include="Microsoft.Bot.Builder.Testing" Version="4.18.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" /> | ||
<PackageReference Include="NUnit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" /> | ||
<PackageReference Include="NUnit.Analyzers" Version="3.5.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\DentallApp.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
2 changes: 1 addition & 1 deletion
2
...atures/Chatbot/Dialogs/ActivityFactory.cs → ...atures/Chatbot/Dialogs/ActivityFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
global using NUnit.Framework; | ||
global using FluentAssertions; | ||
global using Telerik.JustMock; | ||
global using AdaptiveCards; | ||
global using Microsoft.Bot.Connector; | ||
global using Microsoft.Bot.Builder.Testing; | ||
global using Microsoft.Bot.Schema; | ||
global using Newtonsoft.Json.Linq; | ||
|
||
global using static DentallApp.IntegrationTests.Features.Chatbot.Dialogs.BotServiceMockFactory; | ||
global using static DentallApp.IntegrationTests.Features.Chatbot.Dialogs.ActivityFactory; | ||
|
||
global using DentallApp.Features.Chatbot; | ||
global using DentallApp.Features.Chatbot.Models; | ||
global using DentallApp.Features.Chatbot.Dialogs; | ||
global using DentallApp.Features.Appointments.DTOs; | ||
global using DentallApp.Features.SpecificTreatments.DTOs; | ||
global using DentallApp.Features.AvailabilityHours.DTOs; | ||
|
||
global using DentallApp.Responses; | ||
global using DentallApp.Configuration; | ||
global using DentallApp.Helpers.DateTimeHelpers; | ||
global using static DentallApp.Constants.ResponseMessages; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters