diff options
author | David Garcia Quintas <dgq@google.com> | 2017-06-28 14:14:24 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2017-06-28 14:14:24 -0700 |
commit | ab1ff6b0415a3582b7aee26e19e738928c75e0d3 (patch) | |
tree | 6db6239d8f21363a829c40d178d9f2b21ecd08ab /test | |
parent | e48949f0b44d0f8755cbbc3837a2b591867cd0bf (diff) |
Split move test
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/common/alarm_cpp_test.cc | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/test/cpp/common/alarm_cpp_test.cc b/test/cpp/common/alarm_cpp_test.cc index 760dd7b956..ce4168843c 100644 --- a/test/cpp/common/alarm_cpp_test.cc +++ b/test/cpp/common/alarm_cpp_test.cc @@ -40,13 +40,25 @@ TEST(AlarmTest, RegularExpiry) { EXPECT_EQ(junk, output_tag); } -TEST(AlarmTest, Move) { +TEST(AlarmTest, MoveConstructor) { + CompletionQueue cq; + void* junk = reinterpret_cast<void*>(1618033); + Alarm first(&cq, grpc_timeout_seconds_to_deadline(1), junk); + Alarm second(std::move(first)); + void* output_tag; + bool ok; + const CompletionQueue::NextStatus status = cq.AsyncNext( + (void**)&output_tag, &ok, grpc_timeout_seconds_to_deadline(2)); + EXPECT_EQ(status, CompletionQueue::GOT_EVENT); + EXPECT_TRUE(ok); + EXPECT_EQ(junk, output_tag); +} + +TEST(AlarmTest, MoveAssignment) { CompletionQueue cq; void* junk = reinterpret_cast<void*>(1618033); Alarm first(&cq, grpc_timeout_seconds_to_deadline(1), junk); - // Move constructor. Alarm second(std::move(first)); - // Moving assignment. first = std::move(second); void* output_tag; |