Set Model.testnull in your controller or model constructor and make sure it is zero. A boolmust be either true or false, nullmeaning that none of them are verified.
public class WhateverTheModelIs
{
public bool? test { get; set; }
public WhateverTheModelIs()
{
test = null;
}
}
Note. Setting the value nullis redundant, as it is by default. I wanted to be explicit as an example.