This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathArgs.cs
30 lines (29 loc) · 1.54 KB
/
Args.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using GitHub.Api;
using GitHub.Models;
using GitHub.Primitives;
using GitHub.Services;
using LibGit2Sharp;
using Microsoft.VisualStudio.Text;
using NSubstitute;
using Octokit;
internal static class Args
{
public static bool Boolean { get { return Arg.Any<bool>(); } }
public static int Int32 { get { return Arg.Any<int>(); } }
public static string String { get { return Arg.Any<string>(); } }
public static Span Span { get { return Arg.Any<Span>(); } }
public static SnapshotPoint SnapshotPoint { get { return Arg.Any<SnapshotPoint>(); } }
public static NewRepository NewRepository { get { return Arg.Any<NewRepository>(); } }
public static IAccount Account { get { return Arg.Any<IAccount>(); } }
public static IApiClient ApiClient { get { return Arg.Any<IApiClient>(); } }
public static IServiceProvider ServiceProvider { get { return Arg.Any<IServiceProvider>(); } }
public static IAvatarProvider AvatarProvider { get { return Arg.Any<IAvatarProvider>(); } }
public static HostAddress HostAddress { get { return Arg.Any<HostAddress>(); } }
public static Uri Uri { get { return Arg.Any<Uri>(); } }
public static LibGit2Sharp.Branch Branch { get { return Arg.Any<LibGit2Sharp.Branch>(); } }
public static Remote Remote { get { return Arg.Any<Remote>(); } }
public static Func<TwoFactorAuthorizationException, IObservable<TwoFactorChallengeResult>>
TwoFactorChallengCallback
{ get { return Arg.Any<Func<TwoFactorAuthorizationException, IObservable<TwoFactorChallengeResult>>> (); } }
}