/core/src/test/java/org/jclouds/config/ValueOfConfigurationKeyOrNullTest.java
https://github.com/regularfry/jclouds · Java · 57 lines · 23 code · 11 blank · 23 comment · 0 complexity · d7581c12f7ff43865b68e3abfbc65497 MD5 · raw file
- /**
- * Licensed to jclouds, Inc. (jclouds) under one or more
- * contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. jclouds licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- package org.jclouds.config;
- import static org.testng.Assert.assertEquals;
- import java.util.concurrent.ExecutionException;
- import org.testng.annotations.Test;
- import com.google.inject.AbstractModule;
- import com.google.inject.Guice;
- import com.google.inject.name.Names;
- /**
- * Tests behavior of ValueOfConfigurationKeyOrNull
- *
- * @author Adrian Cole
- */
- @Test(groups = "unit")
- public class ValueOfConfigurationKeyOrNullTest {
- @Test
- public void testNotThere() throws InterruptedException, ExecutionException {
- assertEquals(new ValueOfConfigurationKeyOrNull(Guice.createInjector()).apply("foo"), null);
- }
- @Test
- public void testThere() throws InterruptedException, ExecutionException {
- assertEquals(new ValueOfConfigurationKeyOrNull(Guice.createInjector(new AbstractModule() {
- @Override
- protected void configure() {
- bindConstant().annotatedWith(Names.named("foo")).to("bar");
- }
- })).apply("foo"), "bar");
- }
- }