chromium/media/midi/usb_midi_descriptor_parser_unittest.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/midi/usb_midi_descriptor_parser.h"

#include <stdint.h>

#include "testing/gtest/include/gtest/gtest.h"

namespace midi {

namespace {

TEST(UsbMidiDescriptorParserTest, ParseEmpty) {}

TEST(UsbMidiDescriptorParserTest, InvalidSize) {}

TEST(UsbMidiDescriptorParserTest, NonExistingJackIsAssociated) {}

TEST(UsbMidiDescriptorParserTest,
     JacksShouldBeIgnoredWhenParserIsNotParsingMidiInterface) {}

TEST(UsbMidiDescriptorParserTest, Parse) {}

TEST(UsbMidiDescriptorParserTest, ParseDeviceInfoEmpty) {}

TEST(UsbMidiDescriptorParserTest, ParseDeviceInfo) {}

TEST(UsbMidiDescriptorParserTest, BcdVersionToString) {}

}  // namespace

}  // namespace midi