| 1234567891011121314151617181920 |
- using Xunit;
- namespace WeEngine.AbpTest
- {
- public class ComponentTest : WeEngineTestBase
- {
- public ComponentTest(ComponentMethod comMethod)
- {
- ComMethod = comMethod;
- }
- public ComponentMethod ComMethod { get; }
- [Fact]
- public void RunnerTest()
- {
- }
- }
- }
|