For some reason when passing arguments to the test via TestCase
attrubute, I get the following error message about the first argument, which in this case is an array:
This is not a valid constant expression or custom attribute value
module GameLogicTest =
open FsUnit
open NUnit.Framework
open GameLogic.Examle
// This is not a valid constant expression or custom attribute value
[<TestCase( [| 1; 2; 3 |], 3, 1,1)>]
let ``let example.`` (a, m, h, c) =
a
|> proof1 m
|> should equal (h,c)
But when removing the last argument, from both the attribute and the method itself, it all works just fine.
[<TestCase( [| 1; 2; 3 |], 3, 1)>]
let ``let example.`` (a, m, h) =
a
|> proof1 m
|> should equal (h,1)
What am I doing wrong? Preferably I would also define a tuple of int * int
but it doesn't seem to work either.
CLI has a restriction regarding kinds of attribute parameters:
So we can conclude at this point that you can not use tuple as an attribute parameter's type.
From here starts my speculations, so none of below can be true.
I played a bit with different attributes and found that F# compiler starts complain about an every array parameter, when attribute has variable number of arguments (params). For example, if I define the following attribute
and try to use it from F# code, I'll get an error:
I guess the compiler can consider params arguments as an array and therefore does not allow to define 'nested' array in it. But as I said, it is a pure speculation.