Skip to content

Commit

Permalink
test: Reorganize test folders
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonFrai committed Sep 2, 2024
1 parent 2a192ac commit f6d5a16
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion tests/FSharp.Control.Futures.Tests/BuilderTests.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.Control.Futures.Tests.BuilderTests
module FSharp.Control.Futures.Tests.Builder

open Expecto
open FSharp.Control.Futures
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.Control.Futures.Tests.BindTests
module FSharp.Control.Futures.Tests.Combinators.Bind

open System
open Expecto
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.Control.Futures.Tests.FuseTests
module FSharp.Control.Futures.Tests.Combinators.Fuse

open Expecto

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.Control.Futures.Tests.LazyTests
module FSharp.Control.Futures.Tests.Combinators.Lazy

open Expecto
open FSharp.Control.Futures
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.Control.Futures.Tests.NeverTests
module FSharp.Control.Futures.Tests.Combinators.Never

open Expecto
open FSharp.Control.Futures
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.Control.Futures.Tests.ReadyTests
module FSharp.Control.Futures.Tests.Combinators.Ready

open Expecto
open FSharp.Control.Futures
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@

<ItemGroup>
<Compile Include="Utils.fs" />
<Compile Include="Primary\ReadyTests.fs" />
<Compile Include="Primary\NeverTests.fs" />
<Compile Include="Primary\LazyTests.fs" />
<Compile Include="Primary\BindTests.fs" />
<Compile Include="Combinators\ReadyTests.fs" />
<Compile Include="Combinators\NeverTests.fs" />
<Compile Include="Combinators\LazyTests.fs" />
<Compile Include="Combinators\BindTests.fs" />
<Compile Include="Combinators\FuseTests.fs" />
<Compile Include="BuilderTests.fs" />
<Compile Include="FuseTests.fs" />
<Compile Include="IVarTests.fs" />
<Compile Include="FutureProperties\Combinators.fs" />
<Compile Include="Sync\SemaphoreTests.fs" />
<Compile Include="Sync\BarrierTests.fs" />
<Compile Include="Sync\MutexTests.fs" />
<Compile Include="Sync\IVarTests.fs" />
<Compile Include="Runtime\LowLevelStateTests.fs" />
<Compile Include="Runtime\ThreadPoolRuntimeTests.fs" />
<Compile Include="Main.fs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.Control.Futures.Tests.IVarTests
module FSharp.Control.Futures.Tests.Sync.IVar

open System
open Expecto
Expand Down

0 comments on commit f6d5a16

Please sign in to comment.