@@ -6,6 +6,7 @@ public partial class VerifyBase
66#pragma warning disable CA1822 // Mark members as static
77
88 [ Pure ]
9+ [ Experimental ( "VerifyCombinations" ) ]
910 public SettingsTask VerifyCombinations < A > (
1011 Func < A , object ? > method ,
1112 IEnumerable < A > a ,
@@ -15,6 +16,7 @@ public SettingsTask VerifyCombinations<A>(
1516 Verifier . VerifyCombinations ( method , a , captureExceptions , settings , sourceFile ) ;
1617
1718 [ Pure ]
19+ [ Experimental ( "VerifyCombinations" ) ]
1820 public SettingsTask VerifyCombinations < A , B > (
1921 Func < A , B , object ? > method ,
2022 IEnumerable < A > a ,
@@ -25,6 +27,7 @@ public SettingsTask VerifyCombinations<A, B>(
2527 Verifier . VerifyCombinations ( method , a , b , captureExceptions , settings , sourceFile ) ;
2628
2729 [ Pure ]
30+ [ Experimental ( "VerifyCombinations" ) ]
2831 public SettingsTask VerifyCombinations < A , B , C > (
2932 Func < A , B , C , object ? > method ,
3033 IEnumerable < A > a ,
@@ -36,6 +39,7 @@ public SettingsTask VerifyCombinations<A, B, C>(
3639 Verifier . VerifyCombinations ( method , a , b , c , captureExceptions , settings , sourceFile ) ;
3740
3841 [ Pure ]
42+ [ Experimental ( "VerifyCombinations" ) ]
3943 public SettingsTask VerifyCombinations < A , B , C , D > (
4044 Func < A , B , C , D , object ? > method ,
4145 IEnumerable < A > a ,
@@ -48,6 +52,7 @@ public SettingsTask VerifyCombinations<A, B, C, D>(
4852 Verifier . VerifyCombinations ( method , a , b , c , d , captureExceptions , settings , sourceFile ) ;
4953
5054 [ Pure ]
55+ [ Experimental ( "VerifyCombinations" ) ]
5156 public SettingsTask VerifyCombinations < A , B , C , D , E > (
5257 Func < A , B , C , D , E , object ? > method ,
5358 IEnumerable < A > a ,
@@ -61,6 +66,7 @@ public SettingsTask VerifyCombinations<A, B, C, D, E>(
6166 Verifier . VerifyCombinations ( method , a , b , c , d , e , captureExceptions , settings , sourceFile ) ;
6267
6368 [ Pure ]
69+ [ Experimental ( "VerifyCombinations" ) ]
6470 public SettingsTask VerifyCombinations < A , B , C , D , E , F > (
6571 Func < A , B , C , D , E , F , object ? > method ,
6672 IEnumerable < A > a ,
@@ -75,6 +81,7 @@ public SettingsTask VerifyCombinations<A, B, C, D, E, F>(
7581 Verifier . VerifyCombinations ( method , a , b , c , d , e , f , captureExceptions , settings , sourceFile ) ;
7682
7783 [ Pure ]
84+ [ Experimental ( "VerifyCombinations" ) ]
7885 public SettingsTask VerifyCombinations < A , B , C , D , E , F , G > (
7986 Func < A , B , C , D , E , F , G , object ? > method ,
8087 IEnumerable < A > a ,
@@ -90,6 +97,7 @@ public SettingsTask VerifyCombinations<A, B, C, D, E, F, G>(
9097 Verifier . VerifyCombinations ( method , a , b , c , d , e , f , g , captureExceptions , settings , sourceFile ) ;
9198
9299 [ Pure ]
100+ [ Experimental ( "VerifyCombinations" ) ]
93101 public SettingsTask VerifyCombinations < A , B , C , D , E , F , G , H > (
94102 Func < A , B , C , D , E , F , G , H , object ? > method ,
95103 IEnumerable < A > a ,
@@ -106,6 +114,7 @@ public SettingsTask VerifyCombinations<A, B, C, D, E, F, G, H>(
106114 Verifier . VerifyCombinations ( method , a , b , c , d , e , f , g , h , captureExceptions , settings , sourceFile ) ;
107115
108116 [ Pure ]
117+ [ Experimental ( "VerifyCombinations" ) ]
109118 public SettingsTask VerifyCombinations (
110119 Func < object ? [ ] , object ? > method ,
111120 List < IEnumerable < object ? > > lists ,
0 commit comments