Rename and move the tests project to be consistent with the other projects
This commit is contained in:
parent
83cc477170
commit
10283a2053
9 changed files with 3 additions and 3 deletions
29
Start/Tests/Client/MockApis/MockBookmarkContainersApi.cs
Normal file
29
Start/Tests/Client/MockApis/MockBookmarkContainersApi.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net.Http;
|
||||
using System.Threading.Tasks;
|
||||
using Refit;
|
||||
using Start.Shared;
|
||||
using Start.Shared.Api;
|
||||
|
||||
namespace Start_Tests.Client.MockApis {
|
||||
public class MockBookmarkContainersApi : IBookmarkContainersApi {
|
||||
public Task<ApiResponse<IEnumerable<BookmarkContainerDto>>> GetAllBookmarkContainers() {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<ApiResponse<BookmarkContainerDto>> GetBookmarkContainer(
|
||||
int bookmarkContainerId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<ApiResponse<BookmarkContainerDto>> CreateBookmarkContainer(string title,
|
||||
int sortOrder) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<HttpResponseMessage> DeleteBookmarkContainer(int bookmarkContainerId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
23
Start/Tests/Client/MockApis/MockBookmarkGroupsApi.cs
Normal file
23
Start/Tests/Client/MockApis/MockBookmarkGroupsApi.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
using System.Net.Http;
|
||||
using System.Threading.Tasks;
|
||||
using Refit;
|
||||
using Start.Shared;
|
||||
using Start.Shared.Api;
|
||||
|
||||
namespace Start_Tests.Client.MockApis {
|
||||
public class MockBookmarkGroupsApi : IBookmarkGroupsApi {
|
||||
public Task<ApiResponse<BookmarkGroupDto>> GetBookmarkGroup(int bookmarkGroupId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<ApiResponse<BookmarkGroupDto>> CreateBookmarkGroup(string title, string color,
|
||||
int sortOrder, int bookmarkContainerId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<HttpResponseMessage> DeleteBookmarkGroup(int bookmarkGroupId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
23
Start/Tests/Client/MockApis/MockBookmarksApi.cs
Normal file
23
Start/Tests/Client/MockApis/MockBookmarksApi.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
using System.Net.Http;
|
||||
using System.Threading.Tasks;
|
||||
using Refit;
|
||||
using Start.Shared;
|
||||
using Start.Shared.Api;
|
||||
|
||||
namespace Start_Tests.Client.MockApis {
|
||||
public class MockBookmarksApi : IBookmarksApi {
|
||||
public Task<ApiResponse<BookmarkDto>> GetBookmark(int bookmarkId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<ApiResponse<BookmarkDto>> CreateBookmark(string title, string url,
|
||||
string notes, int sortOrder, int bookmarkGroupId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<HttpResponseMessage> DeleteBookmark(int bookmarkId) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue