设计模式 adapter_test 实现

  • 2022-07-21
  • 浏览 (1120)

golang 设计模式 adapter_test 代码实现

package adapter

import "testing"

var expect = "adaptee method"

func TestAdapter(t *testing.T) {
	adaptee := NewAdaptee()
	target := NewAdapter(adaptee)
	res := target.Request()
	if res != expect {
		t.Fatalf("expect: %s, actual: %s", expect, res)
	}
}

目录

go 设计模式

相关文章

适配器模式

设计模式 adapter 实现

0  赞