mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
20 lines
279 B
Go
20 lines
279 B
Go
package pm2
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestUnoconvStart(t *testing.T) {
|
|
p := NewUnoconv()
|
|
err := p.Start()
|
|
require.Nil(t, err)
|
|
}
|
|
|
|
func TestUnoconvShutdown(t *testing.T) {
|
|
p := NewUnoconv()
|
|
err := p.Shutdown()
|
|
require.Nil(t, err)
|
|
}
|