We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 357e208 commit ee644feCopy full SHA for ee644fe
NGitLab.Mock/Clients/EnvironmentClient.cs
@@ -2,6 +2,7 @@
2
using System.Collections.Generic;
3
using System.Threading;
4
using System.Threading.Tasks;
5
+using NGitLab.Mock.Internals;
6
using NGitLab.Models;
7
8
namespace NGitLab.Mock.Clients
@@ -40,7 +41,7 @@ public EnvironmentInfo Stop(int environmentId)
40
41
42
public GitLabCollectionResponse<EnvironmentInfo> GetEnvironmentsAsync(EnvironmentQuery query)
43
{
- throw new NotImplementedException();
44
+ return GitLabCollectionResponse.Create(Array.Empty<EnvironmentInfo>());
45
}
46
47
public EnvironmentInfo GetById(int environmentId)
0 commit comments