2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
14 class EchoGadgetTest(unittest
.TestCase
):
16 def test_bulk_echo(self
):
17 g
= echo_gadget
.EchoGadget()
19 g
.Connected(chip
, usb_constants
.Speed
.HIGH
)
21 g
.ReceivePacket(0x02, 'Hello world!')
22 chip
.SendPacket
.assert_called_once_with(0x82, 'Hello world!')