github
54 of 74 new or added lines in 6 files covered. (72.97%)
6 existing lines in 1 file now uncovered.2008 of 3922 relevant lines covered (51.2%)
4.97 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
|
} |
× |