graphics: Fix test names

This commit is contained in:
Hajime Hoshi 2018-11-09 01:58:41 +09:00
parent dfb63852c2
commit 959c6511dd

View File

@ -843,7 +843,7 @@ func TestImageStretch(t *testing.T) {
} }
} }
func TestSprites(t *testing.T) { func TestImageSprites(t *testing.T) {
const ( const (
width = 512 width = 512
height = 512 height = 512
@ -871,7 +871,7 @@ func TestSprites(t *testing.T) {
} }
} }
func TestMipmap(t *testing.T) { func TestImageMipmap(t *testing.T) {
src, _, err := openEbitenImage() src, _, err := openEbitenImage()
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
@ -916,7 +916,7 @@ func TestMipmap(t *testing.T) {
} }
// Issue #710 // Issue #710
func TestMipmapColor(t *testing.T) { func TestImageMipmapColor(t *testing.T) {
img0, _ := NewImage(256, 256, FilterDefault) img0, _ := NewImage(256, 256, FilterDefault)
img1, _ := NewImage(128, 128, FilterDefault) img1, _ := NewImage(128, 128, FilterDefault)
img1.Fill(color.White) img1.Fill(color.White)