blob: 114c4c576164e168cbfc09677372d67ec1280dce [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.
package main
import (
"fidl/fidl/test/during"
)
type client_after_during struct {
addMethod *during.AddMethodInterface
removeMethod *during.RemoveMethodInterface
addEvent *during.AddEventInterface
removeEvent *during.RemoveEventInterface
}
func (c client_after_during) callAllMethodsExpectAllEvents() {
c.addMethod.ExistingMethod()
c.removeMethod.ExistingMethod()
c.addMethod.NewMethod()
_ = c.addEvent.ExpectNewEvent()
}