mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
542 B
21 lines
542 B
using System;
|
|
using System.Threading.Tasks;
|
|
using Shouldly;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Volo.CmsKit.Menus;
|
|
|
|
public abstract class MenuItemRepository_Test<TStartupModule> : CmsKitTestBase<TStartupModule>
|
|
where TStartupModule : IAbpModule
|
|
{
|
|
|
|
private readonly CmsKitTestData testData;
|
|
private readonly IMenuItemRepository menuItemRepository;
|
|
|
|
public MenuItemRepository_Test()
|
|
{
|
|
testData = GetRequiredService<CmsKitTestData>();
|
|
menuItemRepository = GetRequiredService<IMenuItemRepository>();
|
|
}
|
|
}
|