We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d7f4a commit d68bf29Copy full SHA for d68bf29
tests/IntegrationTests/AudioNodeTests/AudioDestinationNodeTest.cs
@@ -10,14 +10,15 @@ public override async Task<AudioDestinationNode> GetDefaultInstanceAsync()
10
}
11
12
[Test]
13
- public async Task GetMaxChannelCount_RetrievesMaxChannelCount()
+ public async Task GetMaxChannelCountAsync_RetrievesMaxChannelCount()
14
{
15
// Arrange
16
await using AudioDestinationNode destination = await AudioContext.GetDestinationAsync();
17
18
// Act
19
ulong maxChannelCount = await destination.GetMaxChannelCountAsync();
20
21
+ // Assert
22
_ = maxChannelCount.Should().BeGreaterThan(0);
23
24
0 commit comments