public void ResponsibleCommittee_Method()
 {
   var call = new LawsLawApiCall();
   Assert.False(call.Parameters.ContainsKey("responsible_committee"));
   Assert.True(ReferenceEquals(call.ResponsibleCommittee(1), call));
   Assert.Equal((long) 1, call.Parameters["responsible_committee"]);
 }
    public void ResponsibleCommittee_Method()
    {
      Assert.Throws<ArgumentNullException>(() => ILawsLawApiCallExtensions.ResponsibleCommittee(null, new Committee()));
      Assert.Throws<ArgumentNullException>(() => new LawsLawApiCall().ResponsibleCommittee(null));

      var call = new LawsLawApiCall();
      Assert.True(ReferenceEquals(call.ResponsibleCommittee(new Committee { Id = 1 }), call));
      Assert.Equal((long) 1, call.Parameters["responsible_committee"]);
    }