ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/el/lang/TesterVariableMapperImpl.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/el/lang/TesterVariableMapperImpl.java
Status
scanned
Type
file
Name
TesterVariableMapperImpl.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2088 (2.0 KB)
MD5
77abafad1b077ac60a2ddde28c1bdd98
SHA1
48d033cb36d9dec778024b1fee8290a368ab0a91
SHA256
752e2fc0b6ac1f01495b017354b7467f35aaeb8665793c980b6e36ae22e73e80
SHA512

      
    
SHA1_git
3f065517dbec51f5be4e92dcb73e221d349476e5
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TesterVariableMapperImpl.java | 2.0 KB |

/* * 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.el.lang; import jakarta.el.ELContext; import jakarta.el.ELManager; import jakarta.el.ExpressionFactory; import jakarta.el.TesterELContext; import jakarta.el.ValueExpression; import jakarta.el.VariableMapper; import org.junit.Assert; import org.junit.Test; public class TesterVariableMapperImpl { @Test public void testSetVariable01() { ExpressionFactory factory = ELManager.getExpressionFactory(); ELContext context = new TesterELContext(); ValueExpression ve1 = factory.createValueExpression(context, "${1}", int.class); ValueExpression ve2 = factory.createValueExpression(context, "${2}", int.class); ValueExpression ve3 = factory.createValueExpression(context, "${3}", int.class); VariableMapper mapper = new VariableMapperImpl(); mapper.setVariable("var1", ve1); mapper.setVariable("var2", ve2); mapper.setVariable("var3", ve3); mapper.setVariable("var2", null); Assert.assertEquals(ve1, mapper.resolveVariable("var1")); Assert.assertNull(mapper.resolveVariable("var2")); Assert.assertEquals(ve3, mapper.resolveVariable("var3")); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
52.19
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9