public void FromSSchemaVersionTochemaMajor()
 {
     string expected = "Cts.V2";
     var value = new SchemaVersion { Schema = "Cts", Version = new Version(2, 0) };
     var candidate = value.ToString();
     this.Check(expected, candidate);
 }