From aba3c67b9d5b51d94c0e1952164a702376dbe875 Mon Sep 17 00:00:00 2001 From: FoggyFinder Date: Fri, 22 Nov 2019 13:35:38 +0200 Subject: [PATCH] use xunit --- TestsInFSharp/TestsInFSharp.fsproj | 4 ++-- TestsInFSharp/UnitTest1.fs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/TestsInFSharp/TestsInFSharp.fsproj b/TestsInFSharp/TestsInFSharp.fsproj index adb0fa697..86d4ccb9d 100644 --- a/TestsInFSharp/TestsInFSharp.fsproj +++ b/TestsInFSharp/TestsInFSharp.fsproj @@ -8,8 +8,8 @@ - - + + diff --git a/TestsInFSharp/UnitTest1.fs b/TestsInFSharp/UnitTest1.fs index fbd8b9b11..ee1ec31be 100644 --- a/TestsInFSharp/UnitTest1.fs +++ b/TestsInFSharp/UnitTest1.fs @@ -1,6 +1,6 @@ module TestEditor.RandomKeyboardInputsTest -open NUnit.Framework +open Xunit open CSharpMath.Editor @@ -67,7 +67,7 @@ let rec private findShortening(kl:MathKeyboardInput list) = | None -> kl | Some sl -> findShortening sl -[] +[] let ``random inputs don't crash editor``() = let results = List.init 1000 (fun _ -> test100keypresses())