Skip to content

Commit

Permalink
Update DummyLLmFileManager.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
BeepBeepBopBop committed Dec 25, 2024
1 parent c94da78 commit 1213dae
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions tests/Services/DummyLLmFileManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,41 +31,36 @@ event PropertyChangedEventHandler ILLMFileManager.PropertyChanged
{
add
{
throw new NotImplementedException();
}

remove
{
throw new NotImplementedException();
}
}

event NotifyCollectionChangedEventHandler? ILLMFileManager.SortedModelCollectionChanged
{
add
{
throw new NotImplementedException();
}

remove
{
throw new NotImplementedException();
}
}

ReadOnlyObservableCollection<ModelCard> ILLMFileManager.Models => throw new NotImplementedException();
ReadOnlyObservableCollection<ModelCard> ILLMFileManager.Models { get; }

ReadOnlyObservableCollection<ModelCard> ILLMFileManager.UnsortedModels => throw new NotImplementedException();
ReadOnlyObservableCollection<ModelCard> ILLMFileManager.UnsortedModels { get; }

bool ILLMFileManager.FileCollectingInProgress => throw new NotImplementedException();
bool ILLMFileManager.FileCollectingInProgress { get; }

string ILLMFileManager.ModelStorageDirectory { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
string ILLMFileManager.ModelStorageDirectory { get; set ; }

long ILLMFileManager.TotalModelSize => throw new NotImplementedException();
long ILLMFileManager.TotalModelSize { get; }

int ILLMFileManager.DownloadedCount => throw new NotImplementedException();
int ILLMFileManager.DownloadedCount { get; }

bool ILLMFileManager.EnableSlowModels { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
bool ILLMFileManager.EnableSlowModels { get; set; }


#pragma warning disable 67
Expand Down

0 comments on commit 1213dae

Please sign in to comment.