public static TheoryData <TransformTheoryData> GetTransformTestTheoryData()
 {
     return(new TheoryData <TransformTheoryData>()
     {
         new TransformTheoryData
         {
             TestId = "Unsupported transform",
             Algorithm = "Unsupported",
             ExpectedException = ExpectedException.NotSupportedException("IDX30210:")
         },
         new TransformTheoryData
         {
             TestId = "Supported transform: EnvelopedSignature",
             Algorithm = SecurityAlgorithms.EnvelopedSignature
         }
     });
 }
 public static TheoryData <TransformTheoryData> GetCanonicalizingTransformTestTheoryData()
 {
     return(new TheoryData <TransformTheoryData>()
     {
         new TransformTheoryData
         {
             TestId = "Unsupported transform",
             Algorithm = "Unsupported",
             ExpectedException = ExpectedException.NotSupportedException("IDX30211:")
         },
         new TransformTheoryData
         {
             TestId = "Supported transform: ExclusiveC14nWithComments",
             Algorithm = SecurityAlgorithms.ExclusiveC14nWithComments
         },
         new TransformTheoryData
         {
             TestId = "Supported transform: ExclusiveC14n",
             Algorithm = SecurityAlgorithms.ExclusiveC14n
         }
     });
 }