Skip to content

Commit 5ad383f

Browse files
committed
wip
1 parent 9f2f4f2 commit 5ad383f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3+
* or more contributor license agreements. Licensed under the "Elastic License
4+
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
5+
* Public License v 1"; you may not use this file except in compliance with, at
6+
* your election, the "Elastic License 2.0", the "GNU Affero General Public
7+
* License v3.0 only", or the "Server Side Public License, v 1".
8+
*/
9+
10+
package org.elasticsearch.index.mapper.blockloader;
11+
12+
import org.elasticsearch.index.mapper.BlockLoaderTestCase;
13+
14+
import java.util.Map;
15+
16+
public class IpFieldBlockLoaderTests extends BlockLoaderTestCase {
17+
protected IpFieldBlockLoaderTests(Params params) {
18+
super(null, params);
19+
}
20+
21+
@Override
22+
protected Object expected(Map<String, Object> fieldMapping, Object value, TestContext testContext) {
23+
return null;
24+
}
25+
}

0 commit comments

Comments
 (0)