Lines Matching refs:attributes

12     MediaStreamAudioTrackShared::Attributes attributes;  in TEST()  local
13 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
18 MediaStreamAudioTrackShared::Attributes attributes; in TEST() local
19 attributes.buffers = 0; in TEST()
20 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
22 attributes.buffers = 8; in TEST()
23 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
25 attributes.buffers = 1024; in TEST()
26 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
28 attributes.buffers = -1; in TEST()
29 EXPECT_FALSE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
34 MediaStreamAudioTrackShared::Attributes attributes; in TEST() local
35 attributes.duration = 0; in TEST()
36 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
38 attributes.duration = 10; in TEST()
39 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
41 attributes.duration = 10000; in TEST()
42 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
44 attributes.duration = 123; in TEST()
45 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
47 attributes.duration = 9; in TEST()
48 EXPECT_FALSE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()
50 attributes.duration = -1; in TEST()
51 EXPECT_FALSE(MediaStreamAudioTrackShared::VerifyAttributes(attributes)); in TEST()