public void GetJsonRpcUri_ShouldCreateHttpsUri()
            {
                var uri = OdooEndpoints.GetJsonRpcUri(this.connectionInfo);

                Assert.Equal("https://test.odoo:1234/jsonrpc", uri.ToString());
            }
Ejemplo n.º 2
0
 private IJsonRpcClient CreateRpcClient()
 {
     return(this.RpcFactory.GetRpcClient(OdooEndpoints.GetJsonRpcUri(this.SessionInfo)));
 }