blob: 38a6aaa17a8f7b99329396c12147a00c7cf55980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// ------------------------------------------------------------------------------
//
// Copyright (C) Microsoft. All rights reserved.
//
// Module Name:
//
// tests.h
//
// Abstract:
//
// Header for testcases
//
// -------------------------------------------------------------------------------
#pragma once
// Stream test
void Test_StreamStateControl(void);
void Test_LoopbackStreamStateControl(void);
void Test_StreamMinBufferSize(void);
void Test_StreamMaxBufferSize(void);
void Test_StreamBufferSize(HNSTIME requestedPeriodicity);
void Test_StreamDifferentFormat(void);
void Test_LoopbackStreamDifferentFormat(void);
void Test_StreamMultipleModes(void);
// Compliance test
void Test_VerifyPinSupportsPullMode(void);
|