Skip to content

Commit

Permalink
Add conversion subpackage
Browse files Browse the repository at this point in the history
  • Loading branch information
juliette-derancourt committed Nov 17, 2023
1 parent 8303181 commit 2ea517d
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

import org.apiguardian.api.API;
import org.junit.jupiter.api.extension.ParameterContext;
import org.junit.platform.commons.support.ConversionException;
import org.junit.platform.commons.support.StringConversionSupport;
import org.junit.platform.commons.support.conversion.ConversionException;
import org.junit.platform.commons.support.conversion.StringConversionSupport;
import org.junit.platform.commons.util.ClassLoaderUtils;
import org.junit.platform.commons.util.ReflectionUtils;

Expand All @@ -44,7 +44,7 @@
*
* @since 5.0
* @see org.junit.jupiter.params.converter.ArgumentConverter
* @see org.junit.platform.commons.support.StringConversionSupport
* @see org.junit.platform.commons.support.conversion.StringConversionSupport
*/
@API(status = INTERNAL, since = "5.0")
public class DefaultArgumentConverter implements ArgumentConverter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import static org.apiguardian.api.API.Status.EXPERIMENTAL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import static org.junit.platform.commons.util.ReflectionUtils.HierarchyTraversalMode.BOTTOM_UP;
import static org.junit.platform.commons.util.ReflectionUtils.findConstructors;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import static java.util.Arrays.asList;
import static java.util.Collections.unmodifiableList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import org.junit.platform.commons.util.Preconditions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import org.junit.platform.commons.util.Preconditions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import org.junit.platform.commons.util.ReflectionUtils;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import static java.util.Collections.unmodifiableMap;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

class StringToEnumConverter implements StringToObjectConverter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import static java.util.Collections.unmodifiableMap;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

import static java.util.Collections.unmodifiableMap;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

package org.junit.platform.commons.support;
package org.junit.platform.commons.support.conversion;

/**
* Internal API for converting arguments of type {@link String} to a specified
Expand Down

0 comments on commit 2ea517d

Please sign in to comment.