////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2014 Oliver Burn
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;
import com.puppycrawl.tools.checkstyle.api.CheckstyleException;
import com.puppycrawl.tools.checkstyle.checks.naming.ConstantNameCheck;
import java.util.HashSet;
import org.junit.Test;
/**
* Enter a description of class PackageObjectFactoryTest.java.
* @author Rick Giles
* @version 8-Dec-2002
*/
public class PackageObjectFactoryTest
{
private final PackageObjectFactory mFactory = new PackageObjectFactory(
new HashSet<String>(), Thread.currentThread().getContextClassLoader());
@Test
public void testMakeObjectFromName()
throws CheckstyleException
{
final Checker checker =
(Checker) mFactory.createModule(
"com.puppycrawl.tools.checkstyle.Checker");
assertNotNull(checker);
}
@Test
public void testMakeCheckFromName()
throws CheckstyleException
{
final ConstantNameCheck check =
(ConstantNameCheck) mFactory.createModule(
"com.puppycrawl.tools.checkstyle.checks.naming.ConstantName");
assertNotNull(check);
}
@Test
public void testMakeObectFromList()
throws CheckstyleException
{
mFactory.addPackage("com.");
final Checker checker =
(Checker) mFactory.createModule(
"puppycrawl.tools.checkstyle.Checker");
assertNotNull(checker);
}
@Test
public void testMakeObectNoClass()
{
try {
mFactory.createModule("NoClass");
fail("Instantiated non-existant class");
}
catch (CheckstyleException ex) {
assertEquals("CheckstyleException.message",
"Unable to instantiate NoClass",
ex.getMessage());
}
}
}