16 lines
255 B
Go
16 lines
255 B
Go
package image
|
|
|
|
import "testing"
|
|
|
|
func TestCompressPhoto(t *testing.T) {
|
|
p, err := OpenImage("../bin/original.jpg")
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
p = CompressPhoto(p)
|
|
err = SavePhoto("../bin/compressed.jpg", p)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|