Skip to content

Commit

Permalink
update to xunit
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed Jan 9, 2025
1 parent 10a77fb commit c14c08e
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
using Microsoft.Data.Sqlite;
using NUnit.Framework;
using Speckle.Sdk.SQLite;
using Xunit;

namespace Speckle.Sdk.Tests.Unit.SQLite;

[TestFixture]
public class SqLiteJsonCacheExceptionTests
{
[Test]
[Fact]
public void ExpectedExceptionFires_Void()
{
using var pool = new CacheDbCommandPool("DataSource=:memory:", 1);
Expand All @@ -16,7 +15,7 @@ public void ExpectedExceptionFires_Void()
);
}

[Test]
[Fact]
public void ExpectedExceptionFires_Return()
{
using var pool = new CacheDbCommandPool("DataSource=:memory:", 1);
Expand Down

0 comments on commit c14c08e

Please sign in to comment.