Request available level 3 products

This commit is contained in:
Dan Paulat 2022-06-26 07:57:28 -05:00
parent d2597354b4
commit 12d8aaf8a6
5 changed files with 51 additions and 0 deletions

View file

@ -56,6 +56,16 @@ TEST(AwsLevel3DataProvider, Refresh)
EXPECT_EQ(newObjects, totalObjects);
}
TEST(AwsLevel3DataProvider, GetAvailableProducts)
{
AwsLevel3DataProvider provider("KLSX", "N0B");
provider.RequestAvailableProducts();
auto products = provider.GetAvailableProducts();
EXPECT_GT(products.size(), 0);
}
TEST(AwsLevel3DataProvider, TimePointValid)
{
using namespace std::chrono;