Add some tests for the Half type
This commit is contained in:
parent
077d7c7098
commit
05abff631a
2 changed files with 41 additions and 0 deletions
40
tests/OpenTK.Tests/HalfTests.fs
Normal file
40
tests/OpenTK.Tests/HalfTests.fs
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
namespace OpenTK.Tests
|
||||||
|
|
||||||
|
open Xunit
|
||||||
|
open FsCheck
|
||||||
|
open FsCheck.Xunit
|
||||||
|
open System
|
||||||
|
open System.Runtime.InteropServices
|
||||||
|
open OpenTK
|
||||||
|
|
||||||
|
module Half =
|
||||||
|
[<Fact>]
|
||||||
|
let ``Casting Half to Single and back to Half is lossless`` () =
|
||||||
|
for bits = int System.Int16.MinValue to int System.Int16.MaxValue do
|
||||||
|
let bytes = System.BitConverter.GetBytes(int16 bits)
|
||||||
|
let half = Half.FromBytes(bytes, 0)
|
||||||
|
let single = float32 half
|
||||||
|
let roundtrip = Half single
|
||||||
|
|
||||||
|
Assert.True((half.IsNaN && roundtrip.IsNaN) || half = roundtrip)
|
||||||
|
|
||||||
|
[<Fact>]
|
||||||
|
let ``Half.ToString and Single.ToString return same string for same value`` () =
|
||||||
|
for bits = int System.Int16.MinValue to int System.Int16.MaxValue do
|
||||||
|
let bytes = System.BitConverter.GetBytes(int16 bits)
|
||||||
|
let half = Half.FromBytes(bytes, 0)
|
||||||
|
let single = float32 half
|
||||||
|
Assert.Equal(half.ToString(), single.ToString())
|
||||||
|
|
||||||
|
[<Fact>]
|
||||||
|
let ``Half can represent all integers from -2048 to 2048 exactly`` () =
|
||||||
|
for i = -2048 to 2048 do
|
||||||
|
let single = float32 i
|
||||||
|
let half = Half single
|
||||||
|
Assert.Equal(single, float32 half)
|
||||||
|
|
||||||
|
[<Fact>]
|
||||||
|
let ``Single NaN and inifnity can be cast to Half NaN and infinity`` () =
|
||||||
|
Assert.True((Half System.Single.NaN).IsNaN)
|
||||||
|
Assert.True((Half System.Single.PositiveInfinity).IsPositiveInfinity)
|
||||||
|
Assert.True((Half System.Single.NegativeInfinity).IsNegativeInfinity)
|
|
@ -69,6 +69,7 @@
|
||||||
<Compile Include="Vector2Tests.fs" />
|
<Compile Include="Vector2Tests.fs" />
|
||||||
<Compile Include="Vector3Tests.fs" />
|
<Compile Include="Vector3Tests.fs" />
|
||||||
<Compile Include="Vector4Tests.fs" />
|
<Compile Include="Vector4Tests.fs" />
|
||||||
|
<Compile Include="HalfTests.fs" />
|
||||||
<Content Include="App.config" />
|
<Content Include="App.config" />
|
||||||
<None Include="paket.references" />
|
<None Include="paket.references" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Reference in a new issue