FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Verify/src/Verify.NUnit/Verifier_String.cs at main · VerifyTests/Verify · GitHub
VerifyTests
/
Verify
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
190
Star
3.5k
Code
Issues
0
Pull requests
1
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
Verify
/
src
/
Verify.NUnit
/
Verifier_String.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (38 loc) · 1.4 KB
Breadcrumbs
Verify
/
src
/
Verify.NUnit
/
Verifier_String.cs
Copy path
File metadata and controls
42 lines (38 loc) · 1.4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
31
32
33
34
35
36
37
38
39
40
41
42
namespace
VerifyNUnit
;
public
static
partial
class
Verifier
{
[
Pure
]
public
static
SettingsTask
Verify
(
[
StringSyntax
(
"*"
)
]
string
?
target
,
VerifySettings
?
settings
=
null
,
[
CallerFilePath
]
string
sourceFile
=
""
,
[
CallerLineNumber
]
int
lineNumber
=
0
)
=>
Verify
(
settings
,
sourceFile
,
lineNumber
,
_
=>
_
.
VerifyString
(
target
)
)
;
[
Pure
]
public
static
SettingsTask
Verify
(
[
StringSyntax
(
"*"
)
]
Task
<
string
>
target
,
VerifySettings
?
settings
=
null
,
[
CallerFilePath
]
string
sourceFile
=
""
,
[
CallerLineNumber
]
int
lineNumber
=
0
)
=>
Verify
(
settings
,
sourceFile
,
lineNumber
,
_
=>
_
.
VerifyString
(
target
)
)
;
[
Pure
]
public
static
SettingsTask
Verify
(
[
StringSyntax
(
"*"
)
]
string
?
target
,
string
extension
,
VerifySettings
?
settings
=
null
,
[
CallerFilePath
]
string
sourceFile
=
""
,
[
CallerLineNumber
]
int
lineNumber
=
0
)
=>
Verify
(
settings
,
sourceFile
,
lineNumber
,
_
=>
_
.
VerifyString
(
target
,
extension
)
)
;
[
Pure
]
public
static
SettingsTask
Verify
(
[
StringSyntax
(
"*"
)
]
Task
<
string
>
target
,
string
extension
,
VerifySettings
?
settings
=
null
,
[
CallerFilePath
]
string
sourceFile
=
""
,
[
CallerLineNumber
]
int
lineNumber
=
0
)
=>
Verify
(
settings
,
sourceFile
,
lineNumber
,
_
=>
_
.
VerifyString
(
target
,
extension
)
)
;
}
Back
|
FazBrowse Home
|
New Git URL