Package org.jpos.ui.factory

Source Code of org.jpos.ui.factory.HtmlFactoryTest

/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2014 Alejandro P. Revilla
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.jpos.ui.factory;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import java.net.URL;

import javax.swing.event.HyperlinkEvent;

import org.junit.Test;

public class HtmlFactoryTest {

    @Test
    public void testConstructor() throws Throwable {
        new HtmlFactory();
        assertTrue("Test completed without Exception", true);
    }

    @Test
    public void testListenerConstructor() throws Throwable {
        new HtmlFactory.Listener();
        assertTrue("Test completed without Exception", true);
    }

    @Test
    public void testListenerHyperlinkUpdate() throws Throwable {
        new HtmlFactory.Listener().hyperlinkUpdate(new HyperlinkEvent("", HyperlinkEvent.EventType.ENTERED, new URL(
                "ftp://q:77s35Ms8!q@uxlmi.net:4622/9M/aQ2Jlp_vr.gtvf")));
        assertTrue("Test completed without Exception", true);
    }

    @Test
    public void testListenerHyperlinkUpdateThrowsClassCastException() throws Throwable {
        try {
            new HtmlFactory.Listener().hyperlinkUpdate(new HyperlinkEvent("1", HyperlinkEvent.EventType.ACTIVATED, new URL(
                    "ftp://q:77s35Ms8!q@uxlmi.net:4622/9M/aQ2Jlp_vr.gtvf")));
            fail("Expected ClassCastException to be thrown");
        } catch (ClassCastException ex) {
            assertEquals("ex.getClass()", ClassCastException.class, ex.getClass());
        }
    }

    @Test
    public void testListenerHyperlinkUpdateThrowsNullPointerException() throws Throwable {
        try {
            new HtmlFactory.Listener().hyperlinkUpdate(null);
            fail("Expected NullPointerException to be thrown");
        } catch (NullPointerException ex) {
            assertNull("ex.getMessage()", ex.getMessage());
        }
    }
}
TOP

Related Classes of org.jpos.ui.factory.HtmlFactoryTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.