Skip to content

Commit

Permalink
Fix bug #238 in test projects
Browse files Browse the repository at this point in the history
  • Loading branch information
naderjavid committed Jun 26, 2024
1 parent d1043a2 commit 762567a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using Shouldly;
using System.Threading.Tasks;
using Volo.Abp.Modularity;
using Xunit;

namespace {{ EntityInfo.Namespace }};

public class {{ EntityInfo.Name }}AppServiceTests : {{ ProjectInfo.Name }}ApplicationTestBase
public abstract class {{ EntityInfo.Name }}AppServiceTests<TStartupModule> : {{ ProjectInfo.Name }}ApplicationTestBase<TStartupModule>
where TStartupModule : IAbpModule
{
private readonly I{{ EntityInfo.Name }}AppService _{{ EntityInfo.Name | abp.camel_case }}AppService;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using System.Threading.Tasks;
using Shouldly;
using Volo.Abp.Modularity;
using Xunit;

namespace {{ EntityInfo.Namespace }};

public class {{ EntityInfo.Name }}DomainTests : {{ ProjectInfo.Name }}DomainTestBase
public abstract class {{ EntityInfo.Name }}DomainTests<TStartupModule> : {{ ProjectInfo.Name }}TestBase<TStartupModule>
where TStartupModule : IAbpModule
{
public {{ EntityInfo.Name }}DomainTests()
{
Expand Down

0 comments on commit 762567a

Please sign in to comment.