Skip to content

Commit

Permalink
Move text search tests to the appropriate module
Browse files Browse the repository at this point in the history
Issue: #297
  • Loading branch information
mlopatkin committed Nov 19, 2022
1 parent 6a6b513 commit a8b61c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2016 Mikhail Lopatkin
* Copyright 2022 the Andlogview authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -12,16 +12,14 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
*/

package name.mlopatkin.andlogview.search;
package name.mlopatkin.andlogview.search.text;

import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.lenient;

import name.mlopatkin.andlogview.search.text.SearchRequestParser;
import name.mlopatkin.andlogview.search.RequestCompilationException;

import org.junit.Assert;
import org.junit.Before;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2016 Mikhail Lopatkin
* Copyright 2022 the Andlogview authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -12,15 +12,13 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
*/

package name.mlopatkin.andlogview.search;
package name.mlopatkin.andlogview.search.text;

import static org.hamcrest.MatcherAssert.assertThat;

import name.mlopatkin.andlogview.search.text.SearcherBuilder;
import name.mlopatkin.andlogview.search.RequestCompilationException;

import com.google.common.collect.ImmutableList;

Expand Down

0 comments on commit a8b61c0

Please sign in to comment.