Exemplo n.º 1
0
 public void VerifyAsPrimarySetsUnique()
 {
     var indexdefinition = new IndexDefinition("index").AsPrimary();
     Assert.IsTrue(indexdefinition.IsUnique);
 }
Exemplo n.º 2
0
 public void VerifyConstructorSetsName()
 {
     var indexdefinition = new IndexDefinition("index");
     Assert.AreEqual("index", indexdefinition.Name);
 }