ComponentTest.cs 341 B

1234567891011121314151617181920
  1. using Xunit;
  2. namespace WeEngine.AbpTest
  3. {
  4. public class ComponentTest : WeEngineTestBase
  5. {
  6. public ComponentTest(ComponentMethod comMethod)
  7. {
  8. ComMethod = comMethod;
  9. }
  10. public ComponentMethod ComMethod { get; }
  11. [Fact]
  12. public void RunnerTest()
  13. {
  14. }
  15. }
  16. }