Example usage for org.springframework.security.core SpringSecurityCoreVersion MIN_SPRING_VERSION

List of usage examples for org.springframework.security.core SpringSecurityCoreVersion MIN_SPRING_VERSION

Introduction

In this page you can find the example usage for org.springframework.security.core SpringSecurityCoreVersion MIN_SPRING_VERSION.

Prototype

String MIN_SPRING_VERSION

To view the source code for org.springframework.security.core SpringSecurityCoreVersion MIN_SPRING_VERSION.

Click Source Link

Usage

From source file:org.springframework.security.core.SpringSecurityCoreVersionTests.java

@Test
public void springVersionIsUpToDate() throws Exception {
    // Property is set by the build script
    String springVersion = System.getProperty("springVersion");

    assertThat(SpringSecurityCoreVersion.MIN_SPRING_VERSION).isEqualTo(springVersion);
}