mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-17 19:37:45 +08:00
23 lines
435 B
C#
23 lines
435 B
C#
![]() |
using System;
|
|||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|||
|
using OpenAuth.Domain.Service;
|
|||
|
|
|||
|
namespace OpenAuth.UnitTest
|
|||
|
{
|
|||
|
[TestClass]
|
|||
|
public class TestWorkflow :TestBase
|
|||
|
{
|
|||
|
private WorkflowService _app;
|
|||
|
|
|||
|
public TestWorkflow()
|
|||
|
{
|
|||
|
_app = AutofacExt.GetFromFac<WorkflowService>();
|
|||
|
}
|
|||
|
[TestMethod]
|
|||
|
public void AddForm()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|