Examples of BSHTransactionParticipant


Examples of org.jpos.transaction.participant.BSHTransactionParticipant

        assertSame("simpleLogSource.logger", logger, simpleLogSource.logger);
    }

    @Test
    public void testError() throws Throwable {
        new BSHTransactionParticipant().error("testSimpleLogSourceDetail", Integer.valueOf(0));
        assertTrue("Test completed without Exception", true);
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

    }

    @Test
    public void testErrorThrowsNullPointerException() throws Throwable {
        Logger logger = new Logger();
        SimpleLogSource bSHTransactionParticipant = new BSHTransactionParticipant();
        logger.addListener(null);
        bSHTransactionParticipant.setLogger(logger, "testSimpleLogSourceRealm");
        try {
            bSHTransactionParticipant.error("testSimpleLogSourceDetail");
            fail("Expected NullPointerException to be thrown");
        } catch (NullPointerException ex) {
            assertNull("ex.getMessage()", ex.getMessage());
        }
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

    }

    @Test
    public void testGetLogger() throws Throwable {
        Logger logger = new Logger();
        SimpleLogSource bSHTransactionParticipant = new BSHTransactionParticipant();
        bSHTransactionParticipant.setLogger(logger, "testSimpleLogSourceRealm");
        Logger result = bSHTransactionParticipant.getLogger();
        assertSame("result", logger, result);
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

        assertSame("result", logger, result);
    }

    @Test
    public void testGetRealm() throws Throwable {
        SimpleLogSource bSHTransactionParticipant = new BSHTransactionParticipant();
        bSHTransactionParticipant.setRealm("testSimpleLogSourceRealm");
        String result = bSHTransactionParticipant.getRealm();
        assertEquals("result", "testSimpleLogSourceRealm", result);
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

        assertEquals("result", "testSimpleLogSourceRealm", result);
    }

    @Test
    public void testGetRealm1() throws Throwable {
        String result = new BSHTransactionParticipant().getRealm();
        assertNull("result", result);
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

        assertNull("result", result);
    }

    @Test
    public void testInfo1() throws Throwable {
        new BSHTransactionParticipant().info("testSimpleLogSourceDetail", "testString");
        assertTrue("Test completed without Exception", true);
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

    }

    @Test
    public void testInfoThrowsNullPointerException() throws Throwable {
        Logger logger = new Logger();
        SimpleLogSource bSHTransactionParticipant = new BSHTransactionParticipant();
        logger.addListener(null);
        bSHTransactionParticipant.setLogger(logger, "testSimpleLogSourceRealm");
        try {
            bSHTransactionParticipant.info("testSimpleLogSourceDetail");
            fail("Expected NullPointerException to be thrown");
        } catch (NullPointerException ex) {
            assertNull("ex.getMessage()", ex.getMessage());
        }
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

    }

    @Test
    public void testSetLogger() throws Throwable {
        Logger logger = new Logger();
        SimpleLogSource bSHTransactionParticipant = new BSHTransactionParticipant();
        bSHTransactionParticipant.setLogger(logger, "testSimpleLogSourceRealm");
        assertEquals("(BSHTransactionParticipant) bSHTransactionParticipant.realm", "testSimpleLogSourceRealm",
                ((BSHTransactionParticipant) bSHTransactionParticipant).realm);
        assertSame("(BSHTransactionParticipant) bSHTransactionParticipant.logger", logger,
                ((BSHTransactionParticipant) bSHTransactionParticipant).logger);
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

                ((BSHTransactionParticipant) bSHTransactionParticipant).logger);
    }

    @Test
    public void testSetRealm() throws Throwable {
        SimpleLogSource bSHTransactionParticipant = new BSHTransactionParticipant();
        bSHTransactionParticipant.setRealm("testSimpleLogSourceRealm");
        assertEquals("(BSHTransactionParticipant) bSHTransactionParticipant.realm", "testSimpleLogSourceRealm",
                ((BSHTransactionParticipant) bSHTransactionParticipant).realm);
    }
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant

                ((BSHTransactionParticipant) bSHTransactionParticipant).realm);
    }

    @Test
    public void testWarning() throws Throwable {
        new BSHTransactionParticipant().warning("testSimpleLogSourceDetail", "");
        assertTrue("Test completed without Exception", true);
    }
View Full Code Here
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.