def test_nonempty_arguments(self):
     result = natgateway.is_nat_gateway_profile_provided(1, 4)
     self.assertTrue(result)
 def test_nonempty_managed_outbound_ip_count(self):
     result = natgateway.is_nat_gateway_profile_provided(1, None)
     self.assertTrue(result)
 def test_nonempty_idle_timeout(self):
     result = natgateway.is_nat_gateway_profile_provided(None, 4)
     self.assertTrue(result)
 def test_empty_arguments(self):
     result = natgateway.is_nat_gateway_profile_provided(None, None)
     self.assertFalse(result)