Beispiel #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void testGetVariablesLocalTyped()
        public virtual void testGetVariablesLocalTyped()
        {
            IDictionary <string, object> variables = variableScope.VariablesLocalTyped;

            assertNotNull(variables);
            assertEquals(VAR_VALUE_STRING, variables[VAR_NAME]);
            assertEquals(variables, variableScope.getVariablesLocalTyped(true));
        }
Beispiel #2
0
 public virtual VariableMap getVariablesLocalTyped(bool deserializeValues)
 {
     return(wrappedScope.getVariablesLocalTyped(deserializeValues));
 }