github
49 of 68 new or added lines in 6 files covered. (72.06%)
6 existing lines in 1 file now uncovered.2003 of 3922 relevant lines covered (51.07%)
4.95 hits per line
1 |
package schemalex
|
|
2 |
|
|
3 |
type Database struct { |
|
4 |
Name string
|
|
5 |
IfNotExists bool
|
|
6 |
} |
|
7 |
|
|
NEW
|
func (d *Database) ID() string { |
× |
NEW
|
return "database#" + d.Name |
× |
NEW
|
} |
× |