Skip to content

Commit

Permalink
[SOLR-17185] add license file // tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
tboeghk committed Feb 28, 2024
1 parent 533950b commit df71f60
Showing 1 changed file with 21 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* 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 org.apache.solr.pkg;

import org.apache.solr.response.transform.ValueAugmenterFactory;
import org.junit.Test;

public class ValueAugmenterPublicTest {

@Test
public void testValueAugmenterIsOpenForExtension() {
// this should compile from this package
new ValueAugmenterFactory.ValueAugmenter("bee_sI", new Object());
}

@Test
public void testValueAugmenterIsOpenForExtension() {
// this should compile from this package
new ValueAugmenterFactory.ValueAugmenter("bee_sI", new Object());
}
}

0 comments on commit df71f60

Please sign in to comment.