blob: 7fdac085d14f89121566fc6d60b2e4cc947f68bc [file] [log] [blame]
context Tree {
constraint LabelsStartWithT {
check : self.label.startsWith("t")
message : "Label starts with t"
}
critique LabelsEndInN {
check : self.label.endsWith("n")
message : "Label ends with n"
}
}