public void List_All_Instruments()
        {
            const int pageSize = 5;

            //    List the instruments restricting, the number that are returned
            var instruments = _instrumentsApi.ListInstruments(limit: pageSize);

            Assert.That(instruments.Values.Count(), Is.LessThanOrEqualTo(pageSize));
        }