blob: 6d7a6b2d8766c2c1f8cd9cf226c425f602f7dd66 [file] [log] [blame]
/*
* 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 groovy
import groovy.test.GroovyTestCase
import org.codehaus.groovy.runtime.DummyBean
class NewExpressionTest extends GroovyTestCase {
void testNewInstance() {
def cheese = new String( "hey you hosers" )
assert cheese != null
}
void testNewBeanNoArgs() {
def bean = new DummyBean()
assert bean.name == "James"
assert bean.i == 123
}
void testNewBean1Args() {
def bean = new DummyBean("Bob")
assert bean.name == "Bob"
assert bean.i == 123
}
void testNewBean2Args() {
def bean = new DummyBean("Bob", 1707)
assert bean.name == "Bob"
assert bean.i == 1707
}
void testNewInstanceWithFullyQualifiedName() {
def bean = new org.codehaus.groovy.runtime.DummyBean("Bob", 1707)
assert bean.name == "Bob"
assert bean.i == 1707
}
void testNewInstanceWithFullyQualifiedNameNotImported() {
def bean = new java.io.File("Foo")
assert bean != null
}
void testNewOnMultipleLines() {
def bean =
new
File
("Foo")
assert bean != null
}
}