本文整理匯總了Golang中github.com/cloudfoundry-incubator/lattice/ltc/exit_handler/fake_exit_handler.FakeExitHandler類的典型用法代碼示例。如果您正苦於以下問題:Golang FakeExitHandler類的具體用法?Golang FakeExitHandler怎麽用?Golang FakeExitHandler使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了FakeExitHandler類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
"github.com/cloudfoundry-incubator/lattice/ltc/terminal/cursor"
"github.com/cloudfoundry-incubator/lattice/ltc/test_helpers"
"github.com/codegangsta/cli"
"github.com/pivotal-golang/clock/fakeclock"
)
const TerminalEsc = "\033["
var _ = Describe("CommandFactory", func() {
var (
fakeAppExaminer *fake_app_examiner.FakeAppExaminer
outputBuffer *gbytes.Buffer
terminalUI terminal.UI
fakeTerm *fake_terminal.FakeTerminal
fakeClock *fakeclock.FakeClock
osSignalChan chan os.Signal
fakeExitHandler *fake_exit_handler.FakeExitHandler
fakeGraphicalVisualizer *fake_graphical_visualizer.FakeGraphicalVisualizer
fakeTaskExaminer *fake_task_examiner.FakeTaskExaminer
systemDomain string
)
BeforeEach(func() {
fakeAppExaminer = &fake_app_examiner.FakeAppExaminer{}
fakeTaskExaminer = &fake_task_examiner.FakeTaskExaminer{}
outputBuffer = gbytes.NewBuffer()
terminalUI = terminal.NewUI(nil, outputBuffer, nil)
fakeTerm = &fake_terminal.FakeTerminal{}
osSignalChan = make(chan os.Signal, 1)
location, err := time.LoadLocation("Africa/Djibouti")
Expect(err).NotTo(HaveOccurred())
示例2:
"github.com/cloudfoundry-incubator/lattice/ltc/ssh/mocks"
crypto_ssh "golang.org/x/crypto/ssh"
)
type dummyConn struct {
io.ReadWriteCloser
}
var _ = Describe("SSH", func() {
var (
fakeClientDialer *mocks.FakeClientDialer
fakeClient *mocks.FakeClient
fakeTerm *mocks.FakeTerm
fakeListener *mocks.FakeListener
fakeSessionFactory *mocks.FakeSessionFactory
fakeSession *mocks.FakeSession
fakeExitHandler *fake_exit_handler.FakeExitHandler
sigWinchChan chan os.Signal
config *config_package.Config
appSSH *ssh.SSH
)
BeforeEach(func() {
fakeClientDialer = &mocks.FakeClientDialer{}
fakeClient = &mocks.FakeClient{}
fakeTerm = &mocks.FakeTerm{}
fakeListener = &mocks.FakeListener{}
fakeSessionFactory = &mocks.FakeSessionFactory{}
fakeSession = &mocks.FakeSession{}
fakeExitHandler = &fake_exit_handler.FakeExitHandler{}