diff --git a/MathNet.Numerics.Portable.sln b/MathNet.Numerics.Portable.sln index 9e219e96..1683609b 100644 --- a/MathNet.Numerics.Portable.sln +++ b/MathNet.Numerics.Portable.sln @@ -12,6 +12,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Portable", "src\Portable\Po EndProject Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharpPortable", "src\FSharpPortable\FSharpPortable.fsproj", "{F5F14D76-428D-43D7-8431-5B885F1BA419}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{81D2CBEF-1C80-4389-A341-F010E8F86CDB}" +EndProject +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharpPortableUnitTests", "src\FSharpPortableUnitTests\FSharpPortableUnitTests.fsproj", "{90CE8E32-354E-4728-8FE6-87342F469321}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -26,8 +30,15 @@ Global {F5F14D76-428D-43D7-8431-5B885F1BA419}.Debug|Any CPU.Build.0 = Debug|Any CPU {F5F14D76-428D-43D7-8431-5B885F1BA419}.Release|Any CPU.ActiveCfg = Release|Any CPU {F5F14D76-428D-43D7-8431-5B885F1BA419}.Release|Any CPU.Build.0 = Release|Any CPU + {90CE8E32-354E-4728-8FE6-87342F469321}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {90CE8E32-354E-4728-8FE6-87342F469321}.Debug|Any CPU.Build.0 = Debug|Any CPU + {90CE8E32-354E-4728-8FE6-87342F469321}.Release|Any CPU.ActiveCfg = Release|Any CPU + {90CE8E32-354E-4728-8FE6-87342F469321}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {90CE8E32-354E-4728-8FE6-87342F469321} = {81D2CBEF-1C80-4389-A341-F010E8F86CDB} + EndGlobalSection EndGlobal diff --git a/packages/repositories.config b/packages/repositories.config index f8ef82c6..0c61614f 100644 --- a/packages/repositories.config +++ b/packages/repositories.config @@ -1,5 +1,6 @@  + diff --git a/src/FSharpPortableUnitTests/App.config b/src/FSharpPortableUnitTests/App.config new file mode 100644 index 00000000..10beb7c0 --- /dev/null +++ b/src/FSharpPortableUnitTests/App.config @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/FSharpPortableUnitTests/FSharpPortableUnitTests.fsproj b/src/FSharpPortableUnitTests/FSharpPortableUnitTests.fsproj new file mode 100644 index 00000000..fde0864c --- /dev/null +++ b/src/FSharpPortableUnitTests/FSharpPortableUnitTests.fsproj @@ -0,0 +1,104 @@ + + + + + Debug + AnyCPU + 2.0 + 90ce8e32-354e-4728-8fe6-87342f469321 + Library + FSharpPortableUnitTests + FSharpPortableUnitTests + v4.5 + FSharpPortableUnitTests + + + true + full + false + false + bin\Debug\ + DEBUG;TRACE + 3 + bin\Debug\FSharpPortableUnitTests.XML + + + pdbonly + true + true + bin\Release\ + TRACE + 3 + bin\Release\FSharpPortableUnitTests.XML + + + 11 + + + + + + FsUnit.fs + + + VectorTests.fs + + + SparseVectorTests.fs + + + DenseVectorTests.fs + + + MatrixTests.fs + + + SparseMatrixTests.fs + + + DenseMatrixTests.fs + + + Utilities.fs + + + BigRationalTests.fs + + + RandomVariableTests.fs + + + PokerTests.fs + + + + + + + True + + + True + + + + + + FSharpPortable + {f5f14d76-428d-43d7-8431-5b885f1ba419} + True + + + Portable + {d877f358-a2d2-4cc3-a921-8aa5cf6187e8} + True + + + + \ No newline at end of file diff --git a/src/FSharpPortableUnitTests/packages.config b/src/FSharpPortableUnitTests/packages.config new file mode 100644 index 00000000..62adf5a5 --- /dev/null +++ b/src/FSharpPortableUnitTests/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file