namespace MatFileHandler.Tests;
///
/// Options to give to MatFileWriter constructor for testing it.
///
public enum MatFileWriterOptionsForTests
{
///
/// Undefined.
///
Undefined = 0,
///
/// No options.
///
None,
///
/// Option to always use compression.
///
Always,
///
/// Option to never use compression.
///
Never,
}