Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
StackExchange.Redis
Commits
4c5d51d7
Commit
4c5d51d7
authored
Aug 16, 2018
by
Nick Craver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests: move around
parent
6d2cfb1a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
AggresssiveTests.cs
StackExchange.Redis.Tests/AggresssiveTests.cs
+1
-1
BasicOps.cs
StackExchange.Redis.Tests/BasicOps.cs
+3
-1
No files found.
StackExchange.Redis.Tests/AggresssiveTests.cs
View file @
4c5d51d7
...
@@ -11,7 +11,7 @@ public class AggresssiveTests : TestBase
...
@@ -11,7 +11,7 @@ public class AggresssiveTests : TestBase
{
{
public
AggresssiveTests
(
ITestOutputHelper
output
)
:
base
(
output
)
{
}
public
AggresssiveTests
(
ITestOutputHelper
output
)
:
base
(
output
)
{
}
[
Fact
]
[
Fact
LongRunning
]
public
async
Task
ParallelTransactionsWithConditions
()
public
async
Task
ParallelTransactionsWithConditions
()
{
{
const
int
Muxers
=
4
,
Workers
=
20
,
PerThread
=
250
;
const
int
Muxers
=
4
,
Workers
=
20
,
PerThread
=
250
;
...
...
StackExchange.Redis.Tests/BasicOps.cs
View file @
4c5d51d7
...
@@ -280,7 +280,8 @@ public void GetWithExpiryWrongTypeSync()
...
@@ -280,7 +280,8 @@ public void GetWithExpiryWrongTypeSync()
Assert
.
Equal
(
"WRONGTYPE Operation against a key holding the wrong kind of value"
,
ex
.
Message
);
Assert
.
Equal
(
"WRONGTYPE Operation against a key holding the wrong kind of value"
,
ex
.
Message
);
}
}
[
Fact
(
Skip
=
"Unfriendly to Redis 3.x on Windows...need to investigate"
)]
#if DEBUG
[
Fact
]
public
async
Task
TestSevered
()
public
async
Task
TestSevered
()
{
{
SetExpectedAmbientFailureCount
(
2
);
SetExpectedAmbientFailureCount
(
2
);
...
@@ -300,6 +301,7 @@ public async Task TestSevered()
...
@@ -300,6 +301,7 @@ public async Task TestSevered()
Assert
.
Equal
(
key
,
db
.
StringGet
(
key
));
Assert
.
Equal
(
key
,
db
.
StringGet
(
key
));
}
}
}
}
#endif
[
Fact
]
[
Fact
]
public
async
Task
IncrAsync
()
public
async
Task
IncrAsync
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment