🃏
Bard
  • Introduction
  • Getting Started
    • Installation
    • Writing Your First Test
    • Configuration
    • .NET Fiddles
  • Anatomy Of A Scenario
    • Given
      • StoryData
      • StoryBook
      • Chapter
      • Story
    • When
    • Then
      • HTTP Response
      • Headers
      • Bad Requests
      • Performance Testing
  • Advanced
    • Dependency Injection
  • Miscellaneous
    • Change Log
    • Migration Guide
  • gRPC
    • Installation
    • Configuration
    • Writing A Test
  • Tips & Tricks
    • FAQ
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. gRPC

Writing A Test

var creditRequest = new CreditRequest {CustomerId = "id0201", Credit = 7000};

When
   .Grpc(client => client.CheckCreditRequest(creditRequest));

Then.Response.ShouldBe.Ok();
PreviousConfigurationNextFAQ

Last updated 4 years ago

Was this helpful?