Want to run multiple Test Cases by ant ?

Hi all,
I have a class called Book.java and two test cases called BookTest1.java and BookTest2.java . I want to test both this test cases by ant. I have to set this ant task unix cron job so, that this test is done automatically each day.
I have wrote the build file with batchtest option but it is building the application suucessfully without checking the Test Cases individually.
I am successfully the same task with JUnit Test suite.
Thanks and Regards
Taton Banerjee
Book.java
package src;
public class Book {
    private String title;
    private double price;
    public Book(String title,double price) {
        this.title = title;
        this.price = price;
public static void main(String args[])
     System.out.println("Inside Book class");
    public boolean equals(Object object) {
        if (object instanceof Book) {
            Book book = (Book) object;
            return getTitle().equals(book.getTitle())
                    && getPrice() == book.getPrice();
        return false;
    public double getPrice() {
        return price;
    public void setPrice(double price) {
        this.price = price;
    public String getTitle() {
        return title;
    public void setTitle(String title) {
        this.title = title;
BookTest1.java
package src;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
//import de.laliluna.tutorial.junitexample.Book;
* @author http://www.laliluna.de
public class BookTest1 extends TestCase {
    private Book book1;
    private Book book2;
    @SuppressWarnings("unused")
     private Book book3;
     * setUp() method that initializes common objects
    protected void setUp() throws Exception {
        super.setUp();
        book1 = new Book("ES", 12.99);
        book2 = new Book("The Gate", 11.99);
        book3 = new Book("ES", 12.99);
     * tearDown() method that cleanup the common objects
    protected void tearDown() throws Exception {
        super.tearDown();
        book1 = null;
        book2 = null;
        book3 = null;
     * Constructor for BookTest1.
     * @param name
    public BookTest1(String name) {
        super(name);
     * testEquals method to test the equals(..) method
     * of the class Book
    public void testEquals(){
        assertFalse(book2.equals(book1));
        assertTrue(book1.equals(book3));
    public static Test suite(){
        TestSuite suite = new TestSuite();
        suite.addTest(new BookTest1("testEquals"));
        return suite;
BookTest2.java
package src;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
//import de.laliluna.tutorial.junitexample.Book;
public class BookTest2 extends TestCase {
    private Book book3;
    private Book book4;
    private Book book5;
     * setUp() method that initializes common objects
    protected void setUp() throws Exception {
        super.setUp();
        book3 = new Book("ES", 12.99);
        book4 = new Book("The Gate", 11.99);
        book5 = new Book("ES", 12.99);
     * tearDown() method that cleanup the common objects
    protected void tearDown() throws Exception {
        super.tearDown();
        book3 = null;
        book4 = null;
        book5 = null;
     * Constructor for BookTest.
     * @param name
    public BookTest2(String name) {
        super(name);
     * testEquals method to test the equals(..) method
     * of the class Book
    public void testEquals(){
        assertFalse(book4.equals(book3));
        assertTrue(book3.equals(book5));
    public static Test suite(){
        TestSuite suite = new TestSuite();
        suite.addTest(new BookTest2("testEquals"));
        return suite;
Test Suite(Not neccessary when running with ant)
package src;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllJUnitTests {
     /*public AllJUnitTests(String name)
     super(name);
     public static Test suite() {
          TestSuite suite = new TestSuite("Test for src");
          //$JUnit-BEGIN$
          suite.addTest(BookTest2.suite());
          suite.addTest(BookTest1.suite());
          //$JUnit-END$
          return suite;
     * Runs the test suite using the textual runner.
    public static void main(String[] args) {
        junit.textui.TestRunner.run(suite());
build.xml
<?xml version="1.0"?>
     <project default="deploy">
     <!-- set global properties for this build -->
          <property name="src" value="src" />
          <property name="build" value="build" />
          <property name="dist" value="dist" />
          <target name="JUNIT">
               <!-- Create the time stamp -->
               <tstamp/>
               <!-- Create the build directory structure used by compile -->
               <mkdir dir="${build}/src" />
          </target>
          <target name="compile" depends="JUNIT">
               <mkdir dir="${dist}/lib" />
               <!-- Compile the java code from ${src} into ${build} -->
               <javac srcdir="${src}" destdir="${build}/src" >
               <classpath>
                    <!--<pathelement location="dist/lib/HellowithAnt.jar" />-->
                    <pathelement path="E:/junit4.4/junit-4.4.jar" />
                    <!--<pathelement path="/lib/commons-net-1.4.1.jar" />
                    <pathelement path="/lib/jakarta-oro-2.0.8.jar" />-->
               <!--<pathelement path="E:/apache-ant-1.7/lib" />-->
               </classpath>
               </javac>
               <junit printsummary="yes" fork="yes"
                       errorProperty="batchtest.failed"
                       failureProperty="batchtest.failed"
                       haltonfailure="yes">
                       <formatter type="xml"/>
                       <classpath path=".">
                         <pathelement path="E:/junit4.4/junit-4.4.jar" />
                         <pathelement path="/build/src/BookTest1.class"/>
                         <pathelement path="/build/src/BookTest2.class"/>
                            <pathelement path="/build/src/AllJUnitTests.class"/>                                   
                         </classpath>     
                         <!--<test todir="${build}/src"/>-->
                         <batchtest todir="${build}/src">
                         <!--<fileset dir="${build}/src" includes="src.AllJUnitTests.class"/>-->
                         <fileset dir="${build}/src">     
                    <filename name ="src.BookTest1.class"/>
                         <filename name ="src.BookTest2.class"/>
                         <filename name ="src.AllJUnitTests.class"/>     
                         </fileset>     
                         </batchtest>
                    <!--<batchtest todir="build.src">
                         <fileset dir="build.src">
                         <filename name ="src.BookTest1.class"/>
                         <filename name ="src.BookTest2.class"/>
                         </fileset>     
                    </batchtest>-->
                         <!--<test todir="${build}/src" name="src.BookTest"/>-->
                    </junit>
                         <fail message="Tests failed!" if="batchtest.failed"/>                              
                        <junitreport todir="${build}/src">
                            <!--<batchtest todir="${build}/src">
                        <fileset dir="${build}/src">
                         <include name="*.xml"/>
                         </fileset>
                         </batchtest>-->
                    <report format="frames" todir="${build}/lib"/>
                         </junitreport>
                </target>
                <target name="dist" depends="compile">
                 <!-- Create the ${dist}/lib directory -->
                 <!-- Put everything in ${build} into the HelloTest.jar file -->
                 <jar jarfile="${dist}/lib/HellowithAnt.jar" basedir="${build}/src" >
                      <!--<fileset dir="${dist}/lib">
                                               <filename name="BookTest1.class"/>
                                               <filename name="BookTest2.class"/>
                                           <filename name="Book.class"/>
                                           <filename name="dist.lib.HelloTestwith.jar"/>
                      </fileset>-->
                      <manifest>
                       <attribute name="Main-Class" value="src.Book"/>
                       </manifest>
                      </jar>
                </target>
                <target name="runtests" depends="dist" >
                 <java jar="${dist}/lib/HellowithAnt.jar"
                      fork="yes" 
                      classpath=".;D:/Java/jdk1.5.0_01/bin;E:/apache-ant-1.7.0/lib/junit-4.4.jar;C:/Documents and Settings/kaushikb/workspace/HelloTestwithAnt/dist/lib/HellowithAnt.jar;C:/Documents and Settings/kaushikb/workspace/HelloTestwithAnt/src/AllJUnitTests;C:/Documents and Settings/kaushikb/workspace/HelloTestwithAnt/src/BookTest1;C:/Documents and Settings/kaushikb/workspace/HelloTestwithAnt/src/BookTest2">
                    <!--<fileset todir="${build}/src">
                         <filename name="src.BookTest1.class"/>
                         <filename name="src.BookTest2.class"/>
                         </fileset>-->
                    <arg value="src.AllJUnitTests"/>
                 </java>
                </target>
                 <target name="deploy" depends="runtests">
               </target>
           </project>/*---------------------------------------------------------------------------
Command prompt output :
c:/Documents and Settings/kaushikb/workspace/HelloTestwithAnt> ant
Buildfile: build.xml
JUNIT:
compile:
[javac] Compiling 4 source files to C:\Documents and Settings\kaushikb\wor
pace\HelloTestwithAnt\build\src
[junitreport] Processing C:\Documents and Settings\kaushikb\workspace\HelloTes
ithAnt\build\src\TESTS-TestSuites.xml to C:\DOCUME~1\kaushikb\LOCALS~1\Temp\nu
1759201173
[junitreport] Loading stylesheet jar:file:/E:/apache-ant-1.7.0/lib/ant-junit.j
!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl
[junitreport] Transform time: 1153ms
[junitreport] Deleting: C:\DOCUME~1\kaushikb\LOCALS~1\Temp\null1759201173
dist:
[jar] Building jar: C:\Documents and Settings\kaushikb\workspace\HelloTe
withAnt\dist\lib\HellowithAnt.jar
runtests:
[java] Inside Book class
deploy:
BUILD SUCCESSFUL
Total time: 5 seconds
---------------------------------------------------------------------------

Haven't looked too carefully because you weren't very specific, but here's how I would do it:
public class Book { }
public class TestBook1 extends TestCase {}
public class TestBook2 extends TestCase {} //don't define any suite() method
public class TestBookSuite extends TestCase {
   public static Test suite() {
      TestSuite suite = new TestSuite();
      suite.add(TestBook1.class);
      suite.add(TestBook2.class);
      return suite;
//================ant:===========
<target name="runtests" depends="dist" >
   <java classpath="." classname="junit.textui.TestRunner">
     <arg value="path.to.TestBookSuite"/>
   </java>
</target>Of course filling in classpath information and the like where it's appropriate for your situation.

Similar Messages

  • I want to run automation test in multiple device say iphone and ipad or two iphone device Is it possible.I have done automation testing using UIAutomation and get it running from iphone device

    I want to run automation test in multiple device say iphone and ipad or two iphone device Is it possible.I have done automation testing using UIAutomation and get it running from iphone device

    plzzz reply to this question as soon as possible

  • Error encountered while running a test case using MTM

    Hello,
    Has anyone encountered this error while running a test case using MTM 2013? 
    When I click on OK, the message is again shown until that time wherein the popup error is no longer shown.
    When I try to continue to the next pages wherein a modal is being open and I need to enter some data on a text field, the IE would stop working and seems to crash.
    Thanks!

    Hi Kiyaruh,
    Base on the error message, the error is threw by internet explorer.
    Does it have the same issue when access that web site/page in IE directly or it just occurs when run tests through MTM?
    What’s the version of your browser? You may try it with other browser and check whether it has same issue.
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to run multiple instance of tomcat on same server-very Urgent

    HI all,
    I want to run multiple instance of tomcat on same server. I have created CATALINA_BASE directory and i put conf,logs,temp,webapps, and work directory. I have configured server.xml in different port. I have set the environment variables too. Though it didn't workout for me. Is there anything else i have to do for that. if so, Please assist me.
    I did all according to the tomcat 4.1running.txt
    Thanks in advance
    Ram.

    hi,
    http://www.linuxjournal.com/article/8561
    http://forum.java.sun.com/thread.jspa?threadID=515368&messageID=2458945Hit Google..
    http://www.google.com/search?q=how+to++run+multiple+instance+of+tomcat+on+same+server&client=netscape-pp&rls=com.netscape:en-US

  • Report to run CATT test case

    Hi Experts,
    I have a requirement where i need to create a report program to run the   CATT test case 'XYZ'.
    CATT Test case 'XYZ' mass updates pricing for materials via VK11 for condition type PR00, sales area GB20/IC/01.
    As the business should not have permanent authorization to run CATT they requires a report to execute test case 'XYZ' to be developed.
    I have no idea how to run CATT test case through report program. Any pointers will be highly appreciated.
    Thanks & Regards,
    Swati

    Hi Balu,
    Thanks for your feedback. But i am still not clear.Could you please let me know the procedure in steps.
    I also have FS in which functional mention to upload file data and run the test case for some condition type and sales area.
    File have following fields:
    Material, Rate, Pricing Unit, Valid on, Valid to
    Regards,
    Swati
    Edited by: Swati Garg on Mar 7, 2011 6:32 PM

  • Parallel execution of multiple test cases.

    Does flex unit 4.x version supports for parallel execution of multiple test cases?
    Any help will be greatly appreciated.

    No.
    Flash Player and AIR are single-threaded virtual machines. The only parallel execution one could do is during asynchronous tests, but we do not support that presently for a variety of reasons.
    Mike

  • Error in running juit test case for struts2 action class

    Hi,
    I am getting error when i am running my junit test case for struts2 action class. Here is the code.
    public class RoleMasterNewActionTest extends StrutsTestCase {
         public void setUp() throws Exception {
            super.setUp();
            ObjectFactory.setObjectFactory( new ObjectFactory() );
         public void testDoSomeThing()throws Exception {
              RoleMasterNewAction action = new RoleMasterNewAction();
              assertTrue(action.doSomeThing());
    }I am getting error at testDoSomeThing(). the error is
    2010-04-30 15:07:12,263 INFO [com.opensymphony.xwork2.config.providers.XmlConfigurationProvider] - Parsing configuration file [struts-default.xml]
    2010-04-30 15:07:12,325 INFO [com.opensymphony.xwork2.config.providers.XmlConfigurationProvider] - Parsing configuration file [struts-plugin.xml]
    2010-04-30 15:07:12,388 INFO [com.opensymphony.xwork2.config.providers.XmlConfigurationProvider] - Parsing configuration file [struts.xml]
    2010-04-30 15:07:12,388 WARN [org.apache.struts2.config.Settings] - Settings: Could not parse struts.locale setting, substituting default VM locale
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.comm.resources.comman-Lookup
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.comm.resources.comman-label
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.comm.resources.comman-headings
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.comm.resources.comman-messages
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.comm.resources.comman-setup
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.comm.resources.common-errors
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.admin.resources.admin-label
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.admin.resources.admin-lookup
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.admin.resources.admin-headings
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.admin.resources.admin-jndinames
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.birthCertificate.resources.birth-jndinames
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.birthCertificate.resources.birth-labels
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.birthCertificate.resources.birth-headings
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.admin.resources.admin-alert
    2010-04-30 15:07:12,388 INFO [org.apache.struts2.config.BeanSelectionProvider] - Loading global messages from ipl.comm.resources.form
    2010-04-30 15:07:12,419 INFO [org.apache.struts2.spring.StrutsSpringObjectFactory] - Initializing Struts-Spring integration...
    2010-04-30 15:07:12,419 FATAL [org.apache.struts2.spring.StrutsSpringObjectFactory] - ********** FATAL ERROR STARTING UP STRUTS-SPRING INTEGRATION **********
    Looks like the Spring listener was not configured for your web app!
    Nothing will work until WebApplicationContextUtils returns a valid ApplicationContext.
    You might need to add the following to web.xml:
        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>but already i have the listener configuration in my web.xml.
    Thanks in advance..

    I guess it wasn't reading the right web.xml file.
    You may prove it by deleting your web.xml file (don't forget to make a backup), and then run the test again to see whether the error is the same.

  • I am looking to use multithreading in order to run multiple tests in parallel on one UUT.

    I am looking to multithread multiple tests in paralllel on one UUT.  I looked in the main site and all examples are on zip files that I seem to not be able to successfully download from the site.  Does anyone have any file examples or white papers on this subject that I can view???
    Solved!
    Go to Solution.

    put one test in a sub sequence.  then call that subsequence using New Thread as the Execution Options:
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • How to restore previous OS; want to run some test for charging problem

    Our Ipod touch 3rd gen will no longer charge form a wall charger.  It will charge from a computer though. Wall charger and cable Ok; check it with an Ipod touch 4gen brand new. Believe it could be IOS 5. Can we restore previous IOS to run some test?

    Downgrading the iOS is not supported by Apple. Sorry.

  • Why do I get this error when I want to run a test using Ant?

    Why do I get this error when I run the Ant build file?
    Testsuite: JUnit
    Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
    Caused an ERROR
    JUnit
    java.lang.ClassNotFoundException: JUnit
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:316)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:280)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:374)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:242)
    at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
    at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
    at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)

    Abder-Rahman wrote:
    In the "XML" file, I was giving the name of the test as JUnit ---> <test name="JUnit">Well, do you have a class called just "JUnit" that contains a test?

  • Running a JUnit test case using Ant in Eclipse

    If I have a "JUnit", how can I run it using "Ant" in Eclipse?
    Thanks.

    Right-click on the ant build script and select "Run as ant build". But why bother? Eclipse has its own JUnit runners

  • I want to run hardware test on my Power Mac G5 but it isn't working.

    What I tried:
    I have the original install disc 1 which came with the machine in the optical drive (which is the usual one). I printed the hardware test guide which is on the disc, disconnected everything but mouse, keyboard and monitor. I tried to boot, pressing the Alt/Option key, but the "system picker" or boot menu won't show up. What happens is what somebody described as for "old world" macs: my system boots with no finder window open and without the white screen and apple logo (which usually shows up during startup).
    I also tried something I found in a user manual pdf for Power Mac G5 on the apple archives: Booting and press-holding C (btw it's strange that this manual says something different than the manual on the original disc). What happens here is that my machine is booting from the original disc but it boots in Installation mode. I looked at every drop-down-menu I could find there for several times but there is definitely no hardware test, since this is thought to install Mac OS 10.4.
    I also tried the Intel-way and holding D during boot, but no surprise, it only booted the first drive (like it should on a pre-Intel).
    But something about this all is very strange. Yesterday night I tried all these steps above and when I was close to fall asleep in front of my monitor it suddenly worked and I made it finally into the hardware test. If I remember correctly, I was holding down the C key, but as I said a was pretty dizzy and can be mistaken. I ran hardware test once enhanced and it stopped during ram, giving me an error code I wrote down. But since I made it into the test and was so tired, I thought "lets continue tomorrow" which was my epic fail for this year, I guess. Today I repeated every step, every way I tried but it just doesn't work; and I read sooo many forums and Q&A's.
    By the way here is my error code which appeared after 49 minutes (to proof I didn't dream this):
    "2MEM/1/4: DIMM3/J14"
    Why do I want to do this?
    Around the 1st of September this year my Power Mac G5 didn't boot anymore (the fan speeding issue). After reading a little online I came to the point that its either my Ram memory or its my graphics card or its Pram or NVram. I resetted Pram and NVram, I also replaced battery and then it booted again for one day but on the following day it didn't. I repeated every step but the battery replacement since it was a brand new one. It can only be Ram memory or my Graphics card (which is the standard one for this machine).
    Since then my Power Mac was rarely in use, only two or three times in Firewire Target Mode to access some of the data. Yesterday I wanted to do this again; booting it in FT mode but I must have connected my keyboard too late during booting and my machine surprisingly booted just fine! I was so stoked about this! Then I wanted to find out why it didn't work for a while and started several steps. Ran maintanance scripts, repaired the system volume, checked for enough free space, checked my Ram and then I stumbled on the interwebs over the hardware test which is delivered on the original install disc 1 and I never heard about this before (strange enough). What followed is written above.
    What do I have?
    I have this:
    Modellname:
    Power Mac G5
      Modell-Identifizierung:
    PowerMac7,3
      Prozessortyp:
    PowerPC G5  (3.0)
      Prozessorgeschwindigkeit:
    2 GHz
      Anzahl der CPUs:
    2
      L2-Cache (pro CPU):
    512 KB
      Speicher:
    4 GB
      Busgeschwindigkeit:
    1 GHz
      Boot-ROM-Version:
    5.2.4f1
      Seriennummer (System):
    CK52107BRTY
      Hardware-UUID:
    00000000-0000-1000-8000-000D93640EEE
    Sorry for the German but I think you still get it. The PPC was delivered with 10.4 and I bought it used from a friend with his original Update disc to 10.5 and I updated to the max, 10.5.8. I have 2x 1TB drive (similar ones) together as a Raid0 and three partitions on it. (I know now that it doesnt make that much of a sense).
    Yeah so I really want to find out why my machine didn't work for three months but since it is so old and I'm a student, it doesn't make any sense to me to go to an Apple store or similar to have it expensively serviced since there is no guarantee that these guys really help you (heard some stories about the local stores here).
    Is there a way to re-access the hardware test and run it to the end?
    As you might have noticed, I'm pretty desperate. I would soooooooo appreciate it!!
    Best,
    Erik

    "2MEM/1/4: DIMM3/J14"
    Replace the memory in the DIMM 3 slot.
    If you are running Mac OS X 10.5 you can use this program to test your G5's memory:
    http://www.kelleycomputing.net/Rember/
    It will subject your RAM to a more thorough test than Apple Hardware Test.

  • How to run multiple Test Script versions at once

    HI
    How to Run different versions of Test Scripts ( TCD record & SAP GUI) continiously.
    Thankyou

    >
    d s wrote:
    > HI
    > How to Run different versions of Test Scripts ( TCD record & SAP GUI) continiously.
    >
    > Thankyou
    Hi DS,
    If I understand your question correctly,you want to execute different version of TCD and SAPGUI continously,then please find the steps below:
    1)Create a new script.
    2)Call the individual scripts created in TCD and SAPGUI in the new script using REF command in the pattern you want to execute.
    3)eCATT will automatically choose the relevant version automatically suitable for the system.
    4)Maintain the input and output paramters in the main script.
    5)Paramterize the input and output values.
    6)Once the script is without errors,you can execute the scripts and they run continously.
    Hope this answers your query.
    Regards,
    SSN.

  • Error while running a test case in Jcaps 6 JDBC project

    I encountered an error while running the testcase for a JDBC BC project in Jcaps 6.
    BPCOR-6135:A fault was not handled in the process scope; Fault Name is {http://docs.oasis-open.org/wsbpel/2.0/process/executable}selectionFailure; Fault Data is null. Sending errors for the pending requests in the process scope before terminating the process instance
    Caused by: I18N: BPCOR-3023: Selection Failure occurred in BPEL({http://enterprise.netbeans.org/bpel/DBSample/Db}Db
    Kindly suggest a solution

    It seems to be a very common error. Try checking your map assignments when the source (from) is empty (null). These mappings with null values may produce the error you are facing...
    Good luck!

  • I want to run a test to see if someone is using crypto to upload content from my computer?

    Ihttps://developer.apple.com/library/ios/samplecode/CryptoExercise/Listings/ReadM e_txt.html  I need to be able to define these words. What should I be on the lookout for. I am dyslexic so lets keep it at a beginner level.

    Ihttps://developer.apple.com/library/ios/samplecode/CryptoExercise/Listings/ReadM e_txt.html  I need to be able to define these words. What should I be on the lookout for. I am dyslexic so lets keep it at a beginner level.

Maybe you are looking for