Skip to content

Commit

Permalink
Change test project to xunit.
Browse files Browse the repository at this point in the history
  • Loading branch information
huguesv committed Nov 14, 2024
1 parent 607b643 commit ee4d1e9
Show file tree
Hide file tree
Showing 12 changed files with 671 additions and 670 deletions.
4 changes: 2 additions & 2 deletions src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<PackageVersion Include="FluentAssertions" Version="6.12.2" />
<PackageVersion Include="FluentAssertions.Analyzers" Version="0.34.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageVersion Include="MSTest.TestAdapter" Version="3.6.3" />
<PackageVersion Include="MSTest.TestFramework" Version="3.6.3" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
<PackageVersion Include="xunit" Version="2.9.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Copyright (c) Hugues Valois. All rights reserved.
// Licensed under the X11 license. See LICENSE in the project root for license information.

namespace Woohoo.Agi.Engine.UnitTest.Infrastructure;

using Woohoo.Agi.Engine.Interpreter;

internal class InterpreterBuilder
{
public AgiInterpreter Build()
{
var result = new AgiInterpreter(null, null, null);
result.CreateState();
return result;
}
}
Loading

0 comments on commit ee4d1e9

Please sign in to comment.