diff --git a/TestCentre/FsCTests.fs b/TestCentre/FsCTests.fs deleted file mode 100644 index 1da5f58..0000000 --- a/TestCentre/FsCTests.fs +++ /dev/null @@ -1,7 +0,0 @@ -module Say - - open FsCheck - open FsCheck.Xunit - open WetPancake.Pancake - - let RandomText = RequestRandomText() \ No newline at end of file diff --git a/TestCentre/PropTests.fs b/TestCentre/PropTests.fs new file mode 100644 index 0000000..ca8c90c --- /dev/null +++ b/TestCentre/PropTests.fs @@ -0,0 +1,6 @@ +module PropTests + + open FsCheck + open WetPancake.Pancake + + let RandomText = RequestRandomText() \ No newline at end of file diff --git a/TestCentre/TestCentre.fsproj b/TestCentre/TestCentre.fsproj index ec5c770..cbf7fdc 100644 --- a/TestCentre/TestCentre.fsproj +++ b/TestCentre/TestCentre.fsproj @@ -5,15 +5,14 @@ - + + - - - + diff --git a/TestCentre/UnitTests.fs b/TestCentre/UnitTests.fs new file mode 100644 index 0000000..9747c10 --- /dev/null +++ b/TestCentre/UnitTests.fs @@ -0,0 +1,10 @@ +namespace TestCentre.UnitTests +open Xunit +open WetPancake.Pancake + + module UnitTests = + + [] + let RandomTest1()= + let result = RequestRandomText + Assert.NotNull(result) \ No newline at end of file