Skip to content

Commit

Permalink
Fix the web test module
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Dec 26, 2023
1 parent 75a3a86 commit a39851f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 69 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace LoggingManagementSample
{
public abstract class LoggingManagementSampleWebTestBase : AbpWebApplicationFactoryIntegratedTest<LoggingManagementSampleWebTestStartup>
public abstract class LoggingManagementSampleWebTestBase : AbpWebApplicationFactoryIntegratedTest<Program>
{
protected virtual async Task<T> GetResponseAsObjectAsync<T>(string url, HttpStatusCode expectedStatusCode = HttpStatusCode.OK)
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using LoggingManagementSample;
using Microsoft.AspNetCore.Builder;
using Volo.Abp.AspNetCore.TestBase;

var builder = WebApplication.CreateBuilder();
await builder.RunAbpModuleAsync<LoggingManagementSampleWebTestModule>();

public partial class Program
{
}

This file was deleted.

0 comments on commit a39851f

Please sign in to comment.