9 lines
		
	
	
		
			247 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			247 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
 | 
						|
{
 | 
						|
} |