public void CTor_Throws_ArgumentNull_When_Name_IsEmpty()
 {
     var f = new OperandAttribute(string.Empty, "");
 }
 public void CTor_Throws_ArgumentNull_When_Name_IsNull()
 {
     var f = new OperandAttribute(null, "help");
 }