Example usage for org.springframework.beans.factory.support ManagedProperties containsKey

List of usage examples for org.springframework.beans.factory.support ManagedProperties containsKey

Introduction

In this page you can find the example usage for org.springframework.beans.factory.support ManagedProperties containsKey.

Prototype

@Override
    public boolean containsKey(Object key) 

Source Link

Usage

From source file:org.cloudfoundry.reconfiguration.util.StandardPropertyAugmenterTest.java

private void assertContainsKey(String key) {
    PropertyValue propertyValue = this.propertyValues.getPropertyValue(this.key);
    ManagedProperties managedProperties = (ManagedProperties) propertyValue.getValue();
    assertTrue(managedProperties.containsKey(key));
}