This commit is contained in:
yubaolee 2017-01-12 19:25:41 +08:00
parent 85b10e8877
commit a1765f37ba

View File

@ -0,0 +1,22 @@
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()
{
}
}
}