-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More threading improvments #15, use SendQuery instead.
- Loading branch information
Showing
9 changed files
with
215 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
using FluentAssertions; | ||
using NUnit.Framework; | ||
|
||
namespace RethinkDb.Driver.Tests.ReQL | ||
{ | ||
[TestFixture] | ||
public class AsyncAwaitTests : QueryTestFixture | ||
{ | ||
[Test] | ||
public async void basic_test() | ||
{ | ||
bool b = await r.expr(true).runAsync<bool>(conn); | ||
|
||
b.Should().Be(true); | ||
} | ||
|
||
[Test] | ||
public async void async_insert() | ||
{ | ||
|
||
} | ||
|
||
[Test] | ||
public void asnync_() | ||
{ | ||
|
||
} | ||
} | ||
|
||
|
||
[TestFixture] | ||
public class ChangeFeedTests : QueryTestFixture | ||
{ | ||
[Test] | ||
public void Test() | ||
{ | ||
|
||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.