临河任务调度
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.

23 line
514B

  1. using System.Threading.Tasks;
  2. using Volo.Abp.Modularity;
  3. using Xunit;
  4. namespace Himp.TaskScheduling.Samples;
  5. public abstract class SampleManager_Tests<TStartupModule> : TaskSchedulingDomainTestBase<TStartupModule>
  6. where TStartupModule : IAbpModule
  7. {
  8. //private readonly SampleManager _sampleManager;
  9. public SampleManager_Tests()
  10. {
  11. //_sampleManager = GetRequiredService<SampleManager>();
  12. }
  13. [Fact]
  14. public Task Method1Async()
  15. {
  16. return Task.CompletedTask;
  17. }
  18. }