mirror of
https://github.com/ditkrg/DIT.Workflower.git
synced 2026-01-22 22:06:42 +00:00
15 lines
303 B
C#
15 lines
303 B
C#
namespace DIT.Workflower.Tests;
|
|
|
|
public class WorkflowMetaTests
|
|
{
|
|
|
|
[Fact]
|
|
public void WorkflowNeedsAtLeastOneTransition()
|
|
{
|
|
var builder = new WorkflowDefinitionBuilder<PhoneState, PhoneCommand, PhoneCall>();
|
|
|
|
Assert.Throws<InvalidOperationException>(builder.Build);
|
|
}
|
|
|
|
}
|