AlphaTab.Test.Importer.GpImporterTestBase.PrepareImporterWithFile C# (CSharp) Method

PrepareImporterWithFile() private method

private PrepareImporterWithFile ( string name ) : Gp3To5Importer
name string
return AlphaTab.Importer.Gp3To5Importer
        internal Gp3To5Importer PrepareImporterWithFile(string name)
        {
            const string path = "TestFiles/";
            var buffer = Environment.FileLoaders["default"]().LoadBinary(Path.Combine(path, name));
            return PrepareImporterWithBytes(buffer);
        }