本文整理汇总了C#中LibsndfileApi.WriteFrames方法的典型用法代码示例。如果您正苦于以下问题:C# LibsndfileApi.WriteFrames方法的具体用法?C# LibsndfileApi.WriteFrames怎么用?C# LibsndfileApi.WriteFrames使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LibsndfileApi
的用法示例。
在下文中一共展示了LibsndfileApi.WriteFrames方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WriteFloatFrames_ShouldReturnSameAsItemsRequested
public void WriteFloatFrames_ShouldReturnSameAsItemsRequested()
{
const long Frames = 10;
var mock = new Mock<ILibsndfileApi>();
mock.Setup(x => x.WriteFrames(It.IsAny<IntPtr>(), It.IsAny<float[]>(), It.IsAny<long>())).Returns(Frames);
var api = new LibsndfileApi(mock.Object);
var buffer = new float[1];
var retval = api.WriteFrames(new IntPtr(1), buffer, Frames);
Assert.AreEqual(Frames, retval);
}
示例2: WriteFloatFrames_ShouldThrowExceptionOnNullBuffer
public void WriteFloatFrames_ShouldThrowExceptionOnNullBuffer()
{
var api = new LibsndfileApi();
float[] buffer = null;
api.WriteFrames(new IntPtr(1), buffer, It.IsAny<long>());
}
示例3: WriteFloatFrames_ShouldThrowExceptionOnLessThanZeroItems
public void WriteFloatFrames_ShouldThrowExceptionOnLessThanZeroItems()
{
var api = new LibsndfileApi();
var buffer = new float[1];
api.WriteFrames(new IntPtr(1), buffer, -1);
}
示例4: WriteDoubleFrames_ShouldThrowExceptionOnZeroHandle
public void WriteDoubleFrames_ShouldThrowExceptionOnZeroHandle()
{
var api = new LibsndfileApi();
api.WriteFrames(IntPtr.Zero, It.IsAny<double[]>(), It.IsAny<long>());
}
示例5: WriteDoubleFrames_ShouldThrowExceptionOnEmptyBuffer
public void WriteDoubleFrames_ShouldThrowExceptionOnEmptyBuffer()
{
var api = new LibsndfileApi();
var buffer = new double[] { };
api.WriteFrames(new IntPtr(1), buffer, It.IsAny<long>());
}