11 lines
249 B
C#
11 lines
249 B
C#
using Volo.Abp.Modularity;
|
|
|
|
namespace KonSoft.Admin;
|
|
|
|
/* Inherit from this class for your domain layer tests. */
|
|
public abstract class AdminDomainTestBase<TStartupModule> : AdminTestBase<TStartupModule>
|
|
where TStartupModule : IAbpModule
|
|
{
|
|
|
|
}
|