11 lines
268 B
C#
11 lines
268 B
C#
using Volo.Abp.Modularity;
|
|
|
|
namespace Skcks.Study.AbpProject;
|
|
|
|
/* Inherit from this class for your domain layer tests. */
|
|
public abstract class AbpProjectDomainTestBase<TStartupModule> : AbpProjectTestBase<TStartupModule>
|
|
where TStartupModule : IAbpModule
|
|
{
|
|
|
|
}
|