public void CTor_Throws_ArgumentNull_When_Sample_IsEmpty()
 {
     var f = new SampleAttribute(string.Empty, "");
 }
 public void CTor_Throws_ArgumentNull_When_Sample_IsNull()
 {
     var f = new SampleAttribute(null, "help");
 }