Added empty tests in each package, to get the more precise coverage percentage

This commit is contained in:
Deluan 2016-02-29 13:38:41 -05:00
parent f760f89269
commit 1c47b7b8ef
4 changed files with 23 additions and 0 deletions

7
models/models_test.go Normal file
View File

@ -0,0 +1,7 @@
package models
import "testing"
func TestEmpty(t *testing.T) {
}

View File

@ -0,0 +1 @@
package repositories

8
scanner/scanner_test.go Normal file
View File

@ -0,0 +1,8 @@
package scanner
import "testing"
func TestEmpty(t *testing.T) {
}

7
utils/mapping_test.go Normal file
View File

@ -0,0 +1,7 @@
package utils
import "testing"
func TestEmpty(t *testing.T) {
}