This commit is contained in:
Stéphane Nicoll 2024-01-08 16:30:49 +01:00
parent cffc8835c6
commit 1f2d29ee08
553 changed files with 1340 additions and 1295 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/** /**
* Unit tests for {@link AspectJAdviceParameterNameDiscoverer}. * Tests for {@link AspectJAdviceParameterNameDiscoverer}.
* *
* @author Adrian Colyer * @author Adrian Colyer
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -31,7 +31,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.Assertions.assertThatIllegalStateException; import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
/** /**
* Unit tests for the {@link TypePatternClassFilter} class. * Tests for {@link TypePatternClassFilter}.
* *
* @author Rod Johnson * @author Rod Johnson
* @author Rick Evans * @author Rick Evans

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -30,7 +30,7 @@ import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verify;
/** /**
* Unit tests for the {@link DebugInterceptor} class. * Tests for {@link DebugInterceptor}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verify;
/** /**
* Unit tests for the {@link SimpleTraceInterceptor} class. * Tests for {@link SimpleTraceInterceptor}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -24,7 +24,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
/** /**
* Unit tests for the {@link DefaultScopedObject} class. * Tests for {@link DefaultScopedObject}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -22,7 +22,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link ScopedProxyUtils}. * Tests for {@link ScopedProxyUtils}.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 5.1.10 * @since 5.1.10

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verify;
/** /**
* Unit tests for {@link ClassFilters}. * Tests for {@link ClassFilters}.
* *
* @author Rod Johnson * @author Rod Johnson
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -24,7 +24,7 @@ import org.springframework.beans.testfixture.beans.ITestBean;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link RootClassFilter}. * Tests for {@link RootClassFilter}.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 5.1.10 * @since 5.1.10

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import org.springframework.beans.factory.annotation.Qualifier;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link AnnotationMatchingPointcut}. * Tests for {@link AnnotationMatchingPointcut}.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 5.1.10 * @since 5.1.10

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -41,7 +41,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.core.testfixture.TestGroup.LONG_RUNNING; import static org.springframework.core.testfixture.TestGroup.LONG_RUNNING;
/** /**
* Unit tests for {@link AnnotationAsyncExecutionAspect}. * Tests for {@link AnnotationAsyncExecutionAspect}.
* *
* @author Ramnivas Laddad * @author Ramnivas Laddad
* @author Stephane Nicoll * @author Stephane Nicoll

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -52,7 +52,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.SoftAssertions.assertSoftly; import static org.assertj.core.api.SoftAssertions.assertSoftly;
/** /**
* Unit tests for {@link BeanUtils}. * Tests for {@link BeanUtils}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Rob Harrop * @author Rob Harrop

View File

@ -21,7 +21,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link PropertyAccessorUtils}. * Tests for {@link PropertyAccessorUtils}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Chris Beams * @author Chris Beams

View File

@ -28,7 +28,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource; import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource;
/** /**
* Unit tests for {@link CustomAutowireConfigurer}. * Tests for {@link CustomAutowireConfigurer}.
* *
* @author Mark Fisher * @author Mark Fisher
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -50,8 +50,8 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/** /**
* Unit tests for {@link org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor} * Tests for {@link AutowiredAnnotationBeanPostProcessor} processing
* processing the JSR-330 {@link jakarta.inject.Inject} annotation. * the JSR-330 {@link jakarta.inject.Inject} annotation.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @since 3.0 * @since 3.0

View File

@ -35,7 +35,7 @@ import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
/** /**
* Unit tests for {@link ParameterResolutionDelegate}. * Tests for {@link ParameterResolutionDelegate}.
* *
* @author Sam Brannen * @author Sam Brannen
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
/** /**
* Unit tests for {@link CustomScopeConfigurer}. * Tests for {@link CustomScopeConfigurer}.
* *
* @author Rick Evans * @author Rick Evans
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -28,7 +28,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource; import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource;
/** /**
* Unit tests for {@link FieldRetrievingFactoryBean}. * Tests for {@link FieldRetrievingFactoryBean}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Chris Beams * @author Chris Beams

View File

@ -31,7 +31,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link MethodInvokingFactoryBean} and {@link MethodInvokingBean}. * Tests for {@link MethodInvokingFactoryBean} and {@link MethodInvokingBean}.
* *
* @author Colin Sampaleanu * @author Colin Sampaleanu
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -26,7 +26,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource; import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource;
/** /**
* Unit tests for {@link PropertiesFactoryBean}. * Tests for {@link PropertiesFactoryBean}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Chris Beams * @author Chris Beams

View File

@ -28,7 +28,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource; import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource;
/** /**
* Unit tests for {@link PropertyPathFactoryBean}. * Tests for {@link PropertyPathFactoryBean}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -39,7 +39,7 @@ import static org.springframework.beans.factory.support.BeanDefinitionBuilder.ro
import static org.springframework.beans.factory.support.BeanDefinitionReaderUtils.registerWithGeneratedName; import static org.springframework.beans.factory.support.BeanDefinitionReaderUtils.registerWithGeneratedName;
/** /**
* Unit tests for {@link PropertyPlaceholderConfigurer}. * Tests for {@link PropertyPlaceholderConfigurer}.
* *
* @author Chris Beams * @author Chris Beams
* @author Sam Brannen * @author Sam Brannen

View File

@ -49,7 +49,7 @@ import static org.springframework.beans.factory.support.BeanDefinitionBuilder.ge
import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource; import static org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource;
/** /**
* Unit tests for various {@link PropertyResourceConfigurer} implementations including: * Tests for various {@link PropertyResourceConfigurer} implementations including:
* {@link PropertyPlaceholderConfigurer}, {@link PropertyOverrideConfigurer} and * {@link PropertyPlaceholderConfigurer}, {@link PropertyOverrideConfigurer} and
* {@link PreferencesPlaceholderConfigurer}. * {@link PreferencesPlaceholderConfigurer}.
* *

View File

@ -34,7 +34,7 @@ import static org.mockito.Mockito.mock;
import static org.springframework.beans.factory.support.BeanDefinitionBuilder.genericBeanDefinition; import static org.springframework.beans.factory.support.BeanDefinitionBuilder.genericBeanDefinition;
/** /**
* Unit tests for {@link ServiceLocatorFactoryBean}. * Tests for {@link ServiceLocatorFactoryBean}.
* *
* @author Colin Sampaleanu * @author Colin Sampaleanu
* @author Rick Evans * @author Rick Evans

View File

@ -21,7 +21,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link ConstructorArgumentEntry}. * Tests for {@link ConstructorArgumentEntry}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -21,7 +21,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link PassThroughSourceExtractor}. * Tests for {@link PassThroughSourceExtractor}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -21,7 +21,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link PropertyEntry}. * Tests for {@link PropertyEntry}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -27,7 +27,7 @@ import org.springframework.util.ReflectionUtils;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link AutowireUtils}. * Tests for {@link AutowireUtils}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Sam Brannen * @author Sam Brannen

View File

@ -25,7 +25,7 @@ import org.springframework.beans.testfixture.beans.TestBean;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@code equals()} and {@code hashCode()} in bean definitions. * Tests for {@code equals()} and {@code hashCode()} in bean definitions.
* *
* @author Rob Harrop * @author Rob Harrop
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2022 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.Assertions.assertThatIllegalStateException; import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
/** /**
* Unit tests for {@link ManagedList}. * Tests for {@link ManagedList}.
* *
* @author Rick Evans * @author Rick Evans
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2022 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.Assertions.assertThatIllegalStateException; import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
/** /**
* Unit tests for {@link ManagedSet}. * Tests for {@link ManagedSet}.
* *
* @author Rick Evans * @author Rick Evans
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -30,7 +30,7 @@ import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for SPR-8954, in which a custom {@link InstantiationAwareBeanPostProcessor} * Tests for SPR-8954, in which a custom {@link InstantiationAwareBeanPostProcessor}
* forces the predicted type of a FactoryBean, effectively preventing retrieval of the * forces the predicted type of a FactoryBean, effectively preventing retrieval of the
* bean from calls to #getBeansOfType(FactoryBean.class). The implementation of * bean from calls to #getBeansOfType(FactoryBean.class). The implementation of
* {@link AbstractBeanFactory#isFactoryBean(String, RootBeanDefinition)} now ensures that * {@link AbstractBeanFactory#isFactoryBean(String, RootBeanDefinition)} now ensures that

View File

@ -22,7 +22,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the BeanWiringInfo class. * Tests for {@link BeanWiringInfo}.
* *
* @author Rick Evans * @author Rick Evans
* @author Sam Brannen * @author Sam Brannen

View File

@ -22,7 +22,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the ClassNameBeanWiringInfoResolver class. * Tests for {@link ClassNameBeanWiringInfoResolver}.
* *
* @author Rick Evans * @author Rick Evans
*/ */

View File

@ -23,7 +23,7 @@ import org.xml.sax.InputSource;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the {@link DelegatingEntityResolver} class. * Tests for {@link DelegatingEntityResolver}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
/** /**
* Unit tests for ResourceEntityResolver. * Tests for {@link ResourceEntityResolver}.
* *
* @author Simon Baslé * @author Simon Baslé
* @author Sam Brannen * @author Sam Brannen

View File

@ -23,7 +23,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for the {@link ByteArrayPropertyEditor} class. * Tests for {@link ByteArrayPropertyEditor}.
* *
* @author Rick Evans * @author Rick Evans
*/ */

View File

@ -23,7 +23,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for the {@link CharArrayPropertyEditor} class. * Tests for {@link CharArrayPropertyEditor}.
* *
* @author Rick Evans * @author Rick Evans
*/ */

View File

@ -26,7 +26,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the {@link CustomCollectionEditor} class. * Tests for {@link CustomCollectionEditor}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -54,7 +54,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.Assertions.within; import static org.assertj.core.api.Assertions.within;
/** /**
* Unit tests for the various PropertyEditors in Spring. * Tests for the various PropertyEditors in Spring.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Rick Evans * @author Rick Evans

View File

@ -27,7 +27,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the {@link InputStreamEditor} class. * Tests for {@link InputStreamEditor}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -27,7 +27,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the {@link ReaderEditor} class. * Tests for {@link ReaderEditor}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @since 4.2 * @since 4.2

View File

@ -24,7 +24,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the {@link ResourceBundleEditor} class. * Tests for {@link ResourceBundleEditor}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -23,7 +23,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link PropertyComparator}. * Tests for {@link PropertyComparator}.
* *
* @author Keith Donald * @author Keith Donald
* @author Chris Beams * @author Chris Beams

View File

@ -32,7 +32,7 @@ import org.springframework.context.support.ClassPathXmlApplicationContext;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for aop namespace. * Tests for {@link AopNamespaceHandler}.
* *
* @author Rob Harrop * @author Rob Harrop
* @author Chris Beams * @author Chris Beams

View File

@ -64,7 +64,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/** /**
* Unit tests for custom XML namespace handler implementations. * Tests for custom XML namespace handler implementations.
* *
* @author Rob Harrop * @author Rob Harrop
* @author Rick Evans * @author Rick Evans

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -43,7 +43,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalStateException; import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
/** /**
* Unit tests for {@link AnnotationBeanNameGenerator}. * Tests for {@link AnnotationBeanNameGenerator}.
* *
* @author Rick Evans * @author Rick Evans
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -37,7 +37,7 @@ import static org.springframework.context.annotation.ScopedProxyMode.NO;
import static org.springframework.context.annotation.ScopedProxyMode.TARGET_CLASS; import static org.springframework.context.annotation.ScopedProxyMode.TARGET_CLASS;
/** /**
* Unit tests for {@link AnnotationScopeMetadataResolver}. * Tests for {@link AnnotationScopeMetadataResolver}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -24,7 +24,7 @@ import org.springframework.context.annotation.ComponentScan.Filter;
import org.springframework.core.type.filter.TypeFilter; import org.springframework.core.type.filter.TypeFilter;
/** /**
* Unit tests for the @ComponentScan annotation. * Tests for the {@code @ComponentScan} annotation.
* *
* @author Chris Beams * @author Chris Beams
* @since 3.1 * @since 3.1

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -30,7 +30,7 @@ import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoInteractions; import static org.mockito.Mockito.verifyNoInteractions;
/** /**
* Unit tests for @EnableLoadTimeWeaving * Tests for {@code @EnableLoadTimeWeaving}.
* *
* @author Chris Beams * @author Chris Beams
* @since 3.1 * @since 3.1

View File

@ -30,7 +30,7 @@ import org.springframework.beans.factory.support.RootBeanDefinition;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for SPR-8954, in which a custom {@link InstantiationAwareBeanPostProcessor} * Tests for SPR-8954, in which a custom {@link InstantiationAwareBeanPostProcessor}
* forces the predicted type of a FactoryBean, effectively preventing retrieval of the * forces the predicted type of a FactoryBean, effectively preventing retrieval of the
* bean from calls to #getBeansOfType(FactoryBean.class). The implementation of * bean from calls to #getBeansOfType(FactoryBean.class). The implementation of
* {@link AbstractBeanFactory#isFactoryBean(String, RootBeanDefinition)} now ensures * {@link AbstractBeanFactory#isFactoryBean(String, RootBeanDefinition)} now ensures

View File

@ -32,7 +32,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/** /**
* Unit tests for expressions accessing beans and factory beans. * Tests for expressions accessing beans and factory beans.
* *
* @author Andy Clement * @author Andy Clement
*/ */

View File

@ -29,7 +29,7 @@ import org.springframework.expression.spel.support.StandardEvaluationContext;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for compilation of {@link MapAccessor}. * Tests for {@link MapAccessor}.
* *
* @author Andy Clement * @author Andy Clement
*/ */

View File

@ -28,7 +28,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.InstanceOfAssertFactories.BOOLEAN; import static org.assertj.core.api.InstanceOfAssertFactories.BOOLEAN;
/** /**
* Unit tests for {@link MethodBasedEvaluationContext}. * Tests for {@link MethodBasedEvaluationContext}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2022 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -23,7 +23,7 @@ import org.springframework.util.ClassUtils;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link GenericXmlApplicationContext}. * Tests for {@link GenericXmlApplicationContext}.
* *
* See SPR-7530. * See SPR-7530.
* *

View File

@ -38,7 +38,7 @@ import static java.time.ZoneId.systemDefault;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link InstantFormatter}. * Tests for {@link InstantFormatter}.
* *
* @author Andrei Nevedomskii * @author Andrei Nevedomskii
* @author Sam Brannen * @author Sam Brannen

View File

@ -26,7 +26,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.Assertions.assertThatIllegalStateException; import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
/** /**
* Unit tests for the {@link ReflectiveLoadTimeWeaver} class. * Tests for {@link ReflectiveLoadTimeWeaver}.
* *
* @author Rick Evans * @author Rick Evans
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -37,7 +37,7 @@ import org.springframework.util.ObjectUtils;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link JmxUtils}. * Tests for {@link JmxUtils}.
* *
* @author Rob Harrop * @author Rob Harrop
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -25,7 +25,7 @@ import org.springframework.context.testfixture.jndi.SimpleNamingContext;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link JndiPropertySource}. * Tests for {@link JndiPropertySource}.
* *
* @author Chris Beams * @author Chris Beams
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link AnnotationAsyncExecutionInterceptor}. * Tests for {@link AnnotationAsyncExecutionInterceptor}.
* *
* @author Chris Beams * @author Chris Beams
* @since 3.1.2 * @since 3.1.2

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
import static org.assertj.core.api.InstanceOfAssertFactories.type; import static org.assertj.core.api.InstanceOfAssertFactories.type;
/** /**
* Unit tests for {@link ThreadPoolTaskExecutor}. * Tests for {@link ThreadPoolTaskExecutor}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -26,7 +26,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
/** /**
* Unit tests for {@link ScheduledTaskRegistrar}. * Tests for {@link ScheduledTaskRegistrar}.
* *
* @author Tobias Montagna-Hay * @author Tobias Montagna-Hay
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link BitsCronField}. * Tests for {@link BitsCronField}.
* *
* @author Arjen Poutsma * @author Arjen Poutsma
* @author Sam Brannen * @author Sam Brannen

View File

@ -37,7 +37,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.junit.jupiter.params.provider.Arguments.arguments; import static org.junit.jupiter.params.provider.Arguments.arguments;
/** /**
* Unit tests for {@link CronTrigger}. * Tests for {@link CronTrigger}.
* *
* @author Dave Syer * @author Dave Syer
* @author Mark Fisher * @author Mark Fisher

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link QuartzCronField}. * Tests for {@link QuartzCronField}.
* *
* @author Arjen Poutsma * @author Arjen Poutsma
*/ */

View File

@ -22,7 +22,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the StaticScriptSource class. * Tests for {@link StaticScriptSource}.
* *
* @author Rick Evans * @author Rick Evans
* @author Sam Brannen * @author Sam Brannen

View File

@ -32,7 +32,7 @@ import org.springframework.util.Assert;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link DataBinder} with constructor binding. * Tests for {@link DataBinder} with constructor binding.
* *
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
*/ */

View File

@ -72,7 +72,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
import static org.assertj.core.api.Assertions.entry; import static org.assertj.core.api.Assertions.entry;
/** /**
* Unit tests for {@link DataBinder}. * Tests for {@link DataBinder}.
* *
* @author Rod Johnson * @author Rod Johnson
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.Assertions.assertThatIllegalStateException; import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
/** /**
* Unit tests for {@link ValidationUtils}. * Tests for {@link ValidationUtils}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Rick Evans * @author Rick Evans

View File

@ -41,7 +41,7 @@ import org.springframework.validation.method.ParameterValidationResult;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link MethodValidationAdapter}. * Tests for {@link MethodValidationAdapter}.
* *
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -24,7 +24,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link AttributeAccessorSupport}. * Tests for {@link AttributeAccessorSupport}.
* *
* @author Rob Harrop * @author Rob Harrop
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -48,7 +48,7 @@ import static org.springframework.core.CollectionFactory.createCollection;
import static org.springframework.core.CollectionFactory.createMap; import static org.springframework.core.CollectionFactory.createMap;
/** /**
* Unit tests for {@link CollectionFactory}. * Tests for {@link CollectionFactory}.
* *
* @author Oliver Gierke * @author Oliver Gierke
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -36,7 +36,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link Conventions}. * Tests for {@link Conventions}.
* *
* @author Rob Harrop * @author Rob Harrop
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -23,7 +23,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for the {@link OrderComparator} class. * Tests for {@link OrderComparator}.
* *
* @author Rick Evans * @author Rick Evans
* @author Stephane Nicoll * @author Stephane Nicoll

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -36,7 +36,7 @@ import reactor.core.publisher.Mono;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link ReactiveAdapterRegistry}. * Tests for {@link ReactiveAdapterRegistry}.
* *
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -28,7 +28,7 @@ import static org.mockito.BDDMockito.given;
import static org.mockito.BDDMockito.mock; import static org.mockito.BDDMockito.mock;
/** /**
* Unit tests for {@link SimpleAliasRegistry}. * Tests for {@link SimpleAliasRegistry}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Nha Vuong * @author Nha Vuong

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -30,7 +30,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.entry; import static org.assertj.core.api.Assertions.entry;
/** /**
* Unit tests for {@link SortedProperties}. * Tests for {@link SortedProperties}.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 5.2 * @since 5.2

View File

@ -69,7 +69,7 @@ import static org.springframework.core.annotation.AnnotatedElementUtils.isAnnota
import static org.springframework.core.annotation.AnnotationUtilsTests.asArray; import static org.springframework.core.annotation.AnnotationUtilsTests.asArray;
/** /**
* Unit tests for {@link AnnotatedElementUtils}. * Tests for {@link AnnotatedElementUtils}.
* *
* @author Sam Brannen * @author Sam Brannen
* @author Rossen Stoyanchev * @author Rossen Stoyanchev

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link AnnotationAttributes}. * Tests for {@link AnnotationAttributes}.
* *
* @author Chris Beams * @author Chris Beams
* @author Sam Brannen * @author Sam Brannen

View File

@ -63,7 +63,7 @@ import static org.springframework.core.annotation.AnnotationUtils.isAnnotationMe
import static org.springframework.core.annotation.AnnotationUtils.synthesizeAnnotation; import static org.springframework.core.annotation.AnnotationUtils.synthesizeAnnotation;
/** /**
* Unit tests for {@link AnnotationUtils}. * Tests for {@link AnnotationUtils}.
* *
* @author Rod Johnson * @author Rod Johnson
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -40,7 +40,7 @@ import static java.nio.charset.StandardCharsets.UTF_8;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link CharBufferDecoder}. * Tests for {@link CharBufferDecoder}.
* *
* @author Markus Heiden * @author Markus Heiden
* @author Arjen Poutsma * @author Arjen Poutsma

View File

@ -40,7 +40,7 @@ import static java.nio.charset.StandardCharsets.UTF_8;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link StringDecoder}. * Tests for {@link StringDecoder}.
* *
* @author Sebastien Deleuze * @author Sebastien Deleuze
* @author Brian Clozel * @author Brian Clozel

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -58,7 +58,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.assertj.core.api.Assertions.entry; import static org.assertj.core.api.Assertions.entry;
/** /**
* Unit tests for {@link DefaultConversionService}. * Tests for {@link DefaultConversionService}.
* *
* <p>In this package for enforcing accessibility checks to non-public classes outside * <p>In this package for enforcing accessibility checks to non-public classes outside
* the {@code org.springframework.core.convert.support} implementation package. * the {@code org.springframework.core.convert.support} implementation package.

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -52,7 +52,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.assertj.core.api.Assertions.assertThatIllegalStateException; import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
/** /**
* Unit tests for {@link GenericConversionService}. * Tests for {@link GenericConversionService}.
* *
* <p>In this package for access to package-local converter implementations. * <p>In this package for access to package-local converter implementations.
* *

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -27,7 +27,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/** /**
* Unit tests for {@link ObjectToObjectConverter}. * Tests for {@link ObjectToObjectConverter}.
* *
* @author Sam Brannen * @author Sam Brannen
* @author Phillip Webb * @author Phillip Webb

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link JOptCommandLinePropertySource}. * Tests for {@link JOptCommandLinePropertySource}.
* *
* @author Chris Beams * @author Chris Beams
* @author Sam Brannen * @author Sam Brannen

View File

@ -26,7 +26,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link PropertySource} implementations. * Tests for {@link PropertySource} implementations.
* *
* @author Chris Beams * @author Chris Beams
* @since 3.1 * @since 3.1

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -26,7 +26,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for {@link SimpleCommandLineArgsParser}. * Tests for {@link SimpleCommandLineArgsParser}.
* *
* @author Chris Beams * @author Chris Beams
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -23,7 +23,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link SimpleCommandLinePropertySource}. * Tests for {@link SimpleCommandLinePropertySource}.
* *
* @author Chris Beams * @author Chris Beams
* @author Sam Brannen * @author Sam Brannen

View File

@ -31,7 +31,7 @@ import static org.springframework.core.env.AbstractEnvironment.DEFAULT_PROFILES_
import static org.springframework.core.env.AbstractEnvironment.RESERVED_DEFAULT_PROFILE_NAME; import static org.springframework.core.env.AbstractEnvironment.RESERVED_DEFAULT_PROFILE_NAME;
/** /**
* Unit tests for {@link StandardEnvironment}. * Tests for {@link StandardEnvironment}.
* *
* @author Chris Beams * @author Chris Beams
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2022 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link SystemEnvironmentPropertySource}. * Tests for {@link SystemEnvironmentPropertySource}.
* *
* @author Chris Beams * @author Chris Beams
* @author Juergen Hoeller * @author Juergen Hoeller

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -37,7 +37,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.junit.jupiter.api.io.CleanupMode.NEVER; import static org.junit.jupiter.api.io.CleanupMode.NEVER;
/** /**
* Unit tests for {@link ClassPathResource}. * Tests for {@link ClassPathResource}.
* *
* <p>These also originally served as regression tests for the bugs described in * <p>These also originally served as regression tests for the bugs described in
* SPR-6888 and SPR-9413. * SPR-6888 and SPR-9413.

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -26,7 +26,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/** /**
* Unit tests for the {@link ModuleResource} class. * Tests for {@link ModuleResource}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -41,7 +41,7 @@ import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
/** /**
* Unit tests for the {@link PathResource} class. * Tests for {@link PathResource}.
* *
* @author Philippe Marschall * @author Philippe Marschall
* @author Phillip Webb * @author Phillip Webb

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -26,7 +26,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/** /**
* Unit tests for the {@link ResourceEditor} class. * Tests for {@link ResourceEditor}.
* *
* @author Rick Evans * @author Rick Evans
* @author Arjen Poutsma * @author Arjen Poutsma

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -57,7 +57,7 @@ import static org.junit.jupiter.api.Named.named;
import static org.junit.jupiter.params.provider.Arguments.arguments; import static org.junit.jupiter.params.provider.Arguments.arguments;
/** /**
* Unit tests for various {@link Resource} implementations. * Tests for various {@link Resource} implementations.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Chris Beams * @author Chris Beams

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -24,7 +24,8 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.assertj.core.api.Assertions.assertThatThrownBy;
/** /**
* Unit tests for {@link LimitedDataBufferList}. * Tests for {@link LimitedDataBufferList}.
*
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
* @since 5.1.11 * @since 5.1.11
*/ */

View File

@ -27,7 +27,7 @@ import org.springframework.core.io.Resource;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link EncodedResource}. * Tests for {@link EncodedResource}.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2.14 * @since 3.2.14

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -38,7 +38,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.assertj.core.api.Assertions.assertThatNoException; import static org.assertj.core.api.Assertions.assertThatNoException;
/** /**
* Unit tests for {@link PropertySourceProcessor}. * Tests for {@link PropertySourceProcessor}.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 6.0.12 * @since 6.0.12

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -27,7 +27,7 @@ import org.springframework.core.io.ClassPathResource;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for {@link ResourcePropertySource}. * Tests for {@link ResourcePropertySource}.
* *
* @author Chris Beams * @author Chris Beams
* @author Sam Brannen * @author Sam Brannen

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2023 the original author or authors. * Copyright 2002-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -22,7 +22,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
/** /**
* Unit tests for the {@link ResourceRegion} class. * Tests for {@link ResourceRegion}.
* *
* @author Brian Clozel * @author Brian Clozel
*/ */

Some files were not shown because too many files have changed in this diff Show More