com.anaptecs.jeaf.junit.tx.test.TxRequiresNewServiceTestBase Maven / Gradle / Ivy
/*
* anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
*
* Copyright 2004 - 2019. All rights reserved.
*/
package com.anaptecs.jeaf.junit.tx.test;
import com.anaptecs.jeaf.core.annotations.JEAFService;
import com.anaptecs.jeaf.junit.JEAFTestCase;
import com.anaptecs.jeaf.junit.tx.TxRequiresNewService;
/**
* This is the base class of the test suite of service TxRequiresNewService.
*
* @version $LastChangedRevision: 931 $
*/
public abstract class TxRequiresNewServiceTestBase extends JEAFTestCase {
/**
* Service that should be tested by this test case.
*/
@JEAFService
protected TxRequiresNewService txRequiresNewService;
/**
* Initialize test case. Therefore the name of the test that should be executed must be provided.
*
* @param pName Name of the test method that should be executed by this test. The Parameter must not be null.
*/
public TxRequiresNewServiceTestBase( String pName ) {
super(pName);
}
/**
* Initialize test case. Therefore the name of the test that should be executed must be provided. The userId and the
* password of a specific user can be given to this Constructor so this specific user can be logged in.
*
* @param pName Name of the test method that should be executed by this test. The Parameter must not be null.
* @param pUserId UserId of the User who should be logged in for this Test.
* @param pPassword Password of the User who should be logged in for this Test.
*/
public TxRequiresNewServiceTestBase( String pName, String pUserId, String pPassword ) {
super(pName, pUserId, pPassword);
}
/**
* Method test the implementation of service method testTransactionBehavior(...)
*
* @throws Exception if the test fails.
*/
public abstract void testTestTransactionBehavior( ) throws Exception;
}