public void GetSupportedBarcodeFormats()
        {
            var response = InfoApi.GetSupportedBarcodes();

            Assert.IsTrue(response.BarcodeTypes.Count > 0);
            foreach (var format in response.BarcodeTypes)
            {
                Assert.IsNotNull(format.Name);
                Assert.IsNotEmpty(format.Name);
            }
        }