Example #1
0
 public void AddPrimaryKeyWithoutColumn()
 {
     Table tbl = new Table("test");
     Assert.Throws<ColumnExpectedException>(() => tbl.AddPrimaryKey("testid"));
 }