Skip to content

Commit

Permalink
Merge pull request #47 from teesofttech/main
Browse files Browse the repository at this point in the history
Added More Functional Test For Articles
  • Loading branch information
thisisnabi authored Sep 20, 2024
2 parents 1f9e334 + a944930 commit 21e5487
Show file tree
Hide file tree
Showing 6 changed files with 283 additions and 59 deletions.
1 change: 1 addition & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<PackageVersion Include="FluentValidation.DependencyInjectionExtensions" Version="11.9.0" />
<PackageVersion Include="Mapster.DependencyInjection" Version="1.0.1" />
<PackageVersion Include="Mapster" Version="7.4.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.8" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.6" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageVersion Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ If you find this `Blogger` valuable and believe in the importance of CQRS, Clean

This repository provides various resources to get you started with building your blog application:

> Cooming soon
> Coming soon
### Index
- [ ] Problem domain:
- [ ] Ubiquitous Language
Expand Down
8 changes: 6 additions & 2 deletions src/Blogger.APIs/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
app.UseSwagger();
app.UseSwaggerUI();

app.MapEndpoints();
app.MapEndpoints();

app.Run();
app.Run();


// Make the implicit Program class public so test projects can access it
public partial class Program() { }
Loading

0 comments on commit 21e5487

Please sign in to comment.