blob: 28b6e50c4b05743715467f9ef25d0fb9113b950e [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// +build !build_with_native_toolchain
package main
import (
"context"
"fidl/fidl/test/during"
)
type client_after_during struct {
addMethod *during.AddMethodWithCtxInterface
removeMethod *during.RemoveMethodWithCtxInterface
addEvent *during.AddEventWithCtxInterface
removeEvent *during.RemoveEventWithCtxInterface
}
func (c client_after_during) callAllMethodsExpectAllEvents() {
c.addMethod.ExistingMethod(context.Background())
c.removeMethod.ExistingMethod(context.Background())
c.addMethod.NewMethod(context.Background())
_ = c.addEvent.ExpectNewEvent(context.Background())
}