Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update docs/architecture/modern-web-apps-azure/test-asp-net-core-mvc-…
…apps.md
  • Loading branch information
IEvangelist authored Dec 14, 2021
commit 997fbcc29c9f50091e736fe5ceb0a0c720d8d34c
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public class BasicWebTests : IClassFixture<WebApplicationFactory<Program>>
```

> [!TIP]
> If you're using minimal API configuration in your _Program.cs_ file, by default the class will be declared internal and won't be accessible from the test project. You can choose any other instance class in your web project instead, or add this to your _Program.cs_ file:
> If you're using minimal API configuration in your _Program.cs_ file, by default the class will be declared internal and won't be accessible from the test project. You can choose any other instance class in your web project instead, or add this to your _Program.cs_ file:
>
> ```csharp
> // Make the implicit Program class public so test projects can access it
Expand Down