17 lines
233 B
Go
17 lines
233 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(t *testing.T) {
|
|
img1 := loadImage("assets/moutons.jpg")
|
|
img2 := loadImage("assets/lavande.jpg")
|
|
|
|
var pool blendWorkerPool
|
|
|
|
pool.InitWorkerPool()
|
|
|
|
pool.BlendImages(img1, img2)
|
|
}
|