Successful unit test setup and tear down

This commit is contained in:
watsonb8
2020-01-20 22:53:33 -05:00
parent 28afcf12e4
commit df2a6b4bfc
8 changed files with 159 additions and 41 deletions

View File

@ -94,10 +94,11 @@ message LeavePartyResponse {
}
message Member {
//Resource name of the party member to be returned
//Resource name of the party member to be returned (Added by server)
string name = 1;
string userName = 2;
string ipAddress = 3;
//Added by server
google.protobuf.Timestamp addedOn = 4;
}
@ -112,7 +113,6 @@ message ListMembersResponse {
repeated Member members = 1;
string nextPageToken = 2;
}
message GetMemberRequest {
//Resource name of the member to be returned
string name = 1;