Browse Source

Tests: file rename

v2
Christoph Ruegg 13 years ago
parent
commit
f668ff7932
  1. 2
      src/FSharp/FSharp.fsproj
  2. 4
      src/FSharpPortableUnitTests/FSharpPortableUnitTests.fsproj
  3. 2
      src/FSharpUnitTests/FSharpUnitTests.fsproj
  4. 2
      src/FSharpUnitTests/FitTests.fs

2
src/FSharp/FSharp.fsproj

@ -71,9 +71,9 @@
<Compile Include="BigIntegerExtensions.fs" />
<Compile Include="BigRational.fsi" />
<Compile Include="BigRational.fs" />
<Compile Include="RandomVariable.fs" />
<Compile Include="Fit.fs" />
<Compile Include="FindRoots.fs" />
<Compile Include="RandomVariable.fs" />
</ItemGroup>
<ItemGroup>
<Reference Include="FSharp.Core" />

4
src/FSharpPortableUnitTests/FSharpPortableUnitTests.fsproj

@ -92,8 +92,8 @@
<Compile Include="..\FSharpUnitTests\PokerTests.fs">
<Link>PokerTests.fs</Link>
</Compile>
<Compile Include="..\FSharpUnitTests\CurveFittingTests.fs">
<Link>CurveFittingTests.fs</Link>
<Compile Include="..\FSharpUnitTests\FitTests.fs">
<Link>FitTests.fs</Link>
</Compile>
<None Include="App.config" />
<None Include="packages.config" />

2
src/FSharpUnitTests/FSharpUnitTests.fsproj

@ -79,7 +79,7 @@
<Compile Include="BigRationalTests.fs" />
<Compile Include="RandomVariableTests.fs" />
<Compile Include="PokerTests.fs" />
<Compile Include="CurveFittingTests.fs" />
<Compile Include="FitTests.fs" />
<None Include="packages.config" />
<None Include="App.config" />
</ItemGroup>

2
src/FSharpUnitTests/CurveFittingTests.fs → src/FSharpUnitTests/FitTests.fs

@ -5,7 +5,7 @@ open MathNet.Numerics
open NUnit.Framework
open FsUnit
module CurveFittingTests =
module FitTests =
[<Test>]
let ``When fitting to an exact line should return exact parameters``() =
Loading…
Cancel
Save