Skip to content

Commit

Permalink
#302 imports
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 11, 2022
1 parent 6c97ff8 commit f65383d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/aspects/AsyncTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
import org.hamcrest.Matcher;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/**
* Test case for {@link Async} annotation and its implementation.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/aspects/ImmutableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
import java.util.regex.Pattern;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/**
* Test case for {@link Immutable} annotation and its implementation.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/aspects/JSR303Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
import javax.validation.constraints.Pattern;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;

/**
* Test case for JSR-303 annotations and their implementations.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/aspects/LoggableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.hamcrest.TypeSafeMatcher;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/**
* Test case for {@link Loggable} annotation and its implementation.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/aspects/TimeableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
package com.jcabi.aspects;

import java.util.concurrent.TimeUnit;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/**
* Test case for {@link Timeable} annotation.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/aspects/UnitedThrowTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
import java.io.IOException;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/**
* Tests for {@link UnitedThrow}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
import com.jcabi.aspects.Immutable;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/**
* Tests for {@link ImmutabilityChecker}.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/aspects/aj/ParallelizerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
import java.util.concurrent.atomic.AtomicInteger;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/**
* Tests for {@link Parallelizer}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.reflect.MethodSignature;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;

/**
Expand Down

0 comments on commit f65383d

Please sign in to comment.