| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using Lua.IO;
- namespace Lua.Tests.Helpers
- {
- abstract class NotImplementedExceptionFileSystemBase : ILuaFileSystem
- {
- public virtual bool IsReadable(string path)
- {
- throw new NotImplementedException();
- }
- public virtual ValueTask<LuaFileContent> ReadFileContentAsync(string fileName, CancellationToken cancellationToken)
- {
- throw new NotImplementedException();
- }
- public virtual ILuaIOStream? Open(string path, LuaFileOpenMode mode, bool throwError)
- {
- throw new NotImplementedException();
- }
- public virtual void Rename(string oldName, string newName)
- {
- throw new NotImplementedException();
- }
- public virtual void Remove(string path)
- {
- throw new NotImplementedException();
- }
- public virtual string DirectorySeparator => Path.DirectorySeparatorChar.ToString();
- public virtual string GetTempFileName()
- {
- throw new NotImplementedException();
- }
-
- public virtual ILuaIOStream OpenTempStream ()
- {
- throw new NotImplementedException();
- }
-
-
- }
- }
|