1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
package i18n
import (
"io/ioutil"
"log"
"testing"
"github.com/twstrike/gotk3adapter/glib_mock"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
type localGlibMock struct {
*glib_mock.Mock
}
func (*localGlibMock) Local(vx string) string {
return "[local]" + vx
}
func init() {
log.SetOutput(ioutil.Discard)
InitLocalization(&localGlibMock{&glib_mock.Mock{}})
}
type I18NSuite struct{}
var _ = Suite(&I18NSuite{})
func (s *I18NSuite) Test_Local_willReturnTheString(c *C) {
c.Assert(Local("hello"), Equals, "[local]hello")
c.Assert(Local("helllo"), Equals, "[local]helllo")
}
func (s *I18NSuite) Test_Localf_willReturnTheString(c *C) {
c.Assert(Localf("hello"), Equals, "[local]hello")
c.Assert(Localf("helllo %d", 42), Equals, "[local]helllo 42")
}
|