github
54 of 181 new or added lines in 11 files covered. (29.83%)
6 existing lines in 1 file now uncovered.2008 of 4029 relevant lines covered (49.84%)
4.84 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
|
} |
× |