Home | History | Annotate | Download | only in candidates
      1 #
      2 # Copyright 2006-2017 the original author or authors.
      3 #
      4 # Licensed under the Apache License, Version 2.0 (the "License");
      5 # you may not use this file except in compliance with the License.
      6 # You may obtain a copy of the License at
      7 #
      8 #     http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 # Unless required by applicable law or agreed to in writing, software
     11 # distributed under the License is distributed on an "AS IS" BASIS,
     12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 # See the License for the specific language governing permissions and
     14 # limitations under the License.
     15 #
     16 
     17 # List of candidate classes to attempt to instantiate in the Objenesis TCK.
     18 
     19 # Different visibilities of constructor.
     20 org.objenesis.tck.candidates.NoConstructor                                      = No constructor
     21 org.objenesis.tck.candidates.SerializableNoConstructor                          = No constructor (serializable)
     22 org.objenesis.tck.candidates.DefaultPublicConstructor                           = Default public constructor
     23 org.objenesis.tck.candidates.SerializableDefaultPublicConstructor               = Default public constructor (serializable)
     24 org.objenesis.tck.candidates.DefaultProtectedConstructor                        = Default protected constructor
     25 org.objenesis.tck.candidates.SerializableDefaultProtectedConstructor            = Default protected constructor (serializable)
     26 org.objenesis.tck.candidates.DefaultPackageConstructor                          = Default package constructor
     27 org.objenesis.tck.candidates.SerializableDefaultPackageConstructor              = Default package constructor (serializable)
     28 org.objenesis.tck.candidates.DefaultPrivateConstructor                          = Default private constructor
     29 org.objenesis.tck.candidates.SerializableDefaultPrivateConstructor              = Default private constructor (serializable)
     30 org.objenesis.tck.candidates.SerializableWithAncestorThrowingException          = Serializable with ancestor throwing exception
     31 org.objenesis.tck.candidates.SerializableReplacer                               = Serializable replacing with another class
     32 org.objenesis.tck.candidates.SerializableResolver                               = Serializable resolving to another class
     33 
     34 # Constructors that work with arguments passed in.
     35 org.objenesis.tck.candidates.ConstructorThrowingException                       = Constructor throwing exception
     36 org.objenesis.tck.candidates.SerializableConstructorThrowingException           = Constructor throwing exception (serializable)
     37 org.objenesis.tck.candidates.ConstructorWithArguments                           = Constructor with arguments
     38 org.objenesis.tck.candidates.SerializableConstructorWithArguments               = Constructor with arguments (serializable)
     39 org.objenesis.tck.candidates.ConstructorWithMandatoryArguments                  = Constructor with mandatory arguments
     40 org.objenesis.tck.candidates.SerializableConstructorWithMandatoryArguments      = Constructor with mandatory arguments (serializable)
     41