Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2a22bf7

Browse files
cloudRoutineKevinRansom
authored andcommitted
additional test categories (#2655)
1 parent5267119 commit2a22bf7

File tree

53 files changed

+68
-50
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+68
-50
lines changed

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/Array2Module.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Make sure each method works on:
1818
* Null array (null)
1919
*)
2020

21-
[<TestFixture>]
21+
[<TestFixture>][<Category"Collections.Array">][<Category"FSharp.Core.Collections">]
2222
typeArray2Module()=
2323
[<Test>]
2424
memberthis.Base1()=

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/Array3Module.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Make sure each method works on:
1919
*)
2020

2121

22-
[<TestFixture>]
22+
[<TestFixture>][<Category"Collections.Array">][<Category"FSharp.Core.Collections">]
2323
typeArray3Module()=
2424

2525
letVerifyDimensions arr x y z=

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/Array4Module.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Make sure each method works on:
1919
*)
2020

2121

22-
[<TestFixture>]
22+
[<TestFixture>][<Category"Collections.Array">][<Category"FSharp.Core.Collections">]
2323
typeArray4Module()=
2424

2525
letVerifyDimensions arr x y z u=

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/ArrayModule.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Make sure each method works on:
1818
* Null array (null)
1919
*)
2020

21-
[<TestFixture>]
21+
[<TestFixture>][<Category"Collections.Array">][<Category"FSharp.Core.Collections">]
2222
typeArrayModule()=
2323

2424
[<Test>]

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/ArrayModule2.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type ArrayWindowedTestInput<'t> =
2626
Exception:Type option
2727
}
2828

29-
[<TestFixture>]
29+
[<TestFixture>][<Category"Collections.Array">][<Category"FSharp.Core.Collections">]
3030
typeArrayModule2()=
3131

3232
[<Test>]

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/ArrayProperties.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2-
2+
[<NUnit.Framework.Category"Collections.Array">][<NUnit.Framework.Category"FSharp.Core.Collections">]
33
moduleFSharp.Core.Unittests.FSharp_Core.Microsoft_FSharp_Collections.ArrayProperties
44

55
openSystem

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2-
2+
[<NUnit.Framework.Category"FSharp.Core.Collections">]
3+
[<NUnit.Framework.Category"Collections.Seq">]
4+
[<NUnit.Framework.Category"Collections.List">]
5+
[<NUnit.Framework.Category"Collections.Array">]
36
moduleFSharp.Core.Unittests.FSharp_Core.Microsoft_FSharp_Collections.CollectionModulesConsistency
47

58
openSystem

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/ListModule.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Make sure each method works on:
1717
* Empty List (0 elements)
1818
*)
1919

20-
[<TestFixture>]
20+
[<TestFixture>][<Category"Collections.List">][<Category"FSharp.Core.Collections">]
2121
typeListModule()=
2222
[<Test>]
2323
memberthis.Empty()=

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/ListModule2.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type ListWindowedTestInput<'t> =
2525
Exception:Type option
2626
}
2727

28-
[<TestFixture>]
28+
[<TestFixture>][<Category"Collections.List">][<Category"FSharp.Core.Collections">]
2929
typeListModule02()=
3030
[<Test>]
3131
memberthis.Length()=

‎src/fsharp/FSharp.Core.Unittests/FSharp.Core/Microsoft.FSharp.Collections/ListProperties.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2-
2+
[<NUnit.Framework.Category"Collections.List">][<NUnit.Framework.Category"FSharp.Core.Collections">]
33
moduleFSharp.Core.Unittests.FSharp_Core.Microsoft_FSharp_Collections.ListProperties
44

55
openSystem

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp