<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    having problems with testNG and Seam tools -
</h3>
<span style="margin-bottom: 10px;">
    reply from <a href="http://community.jboss.org/people/wiggy">William Woodman</a> in <i>JBoss Tools</i> - <a href="http://community.jboss.org/message/535579#535579">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>ok - not sure what has happened - however i built the project on my 'other machine' and tried again applying what i'd learned to date</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>1.&#160;&#160;&#160;&#160; workspace with no spaces in any of the paths</p><p>2.&#160;&#160;&#160;&#160; set the vm option to include "-Dsun.lang.ClassLoader.allowArraySyntax=true" for my 1.6 vm i use</p><p>3.&#160;&#160;&#160;&#160; imported the xxx-ds.xml data source from the xxx-ear/resources folder into the xxx-test/bootstrap/deploy folder </p><p>4&#160;&#160;&#160;&#160;&#160; imported the xxx-ejb/META-INF/persistence.xml into the xxx-test/META-INF folder </p><p>5.&#160;&#160;&#160;&#160; wrote some simple tests</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>and 'whoa' this seemed to work&#160; - i've attached my notes as a word rtf file if any is interested</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>however i still have problem. </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>i write a test that does an @In directive - and this doesnt seem to work - so something is still missing - if i do get on the entityManager - this works - but the injection doesnt - my assert fails the tests</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>so why does the injection fail ?&#160; would rfeally appreciate any guidance - am i just being stupid or what ?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>package org.domain.forsterslist.entity;import javax.persistence.EntityManager;import org.jboss.seam.annotations.In;import org.jboss.seam.annotations.Name;import org.jboss.seam.mock.SeamTest;import org.testng.annotations.Test;@Name (value="nodeTest")public class NodeTest extends SeamTest{&#160;&#160;&#160; @In (value="entityManager", create=true)&#160;&#160;&#160; EntityManager em;&#160;&#160;&#160; @In (create=true)&#160;&#160;&#160; Node node;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; @Test&#160; //passes&#160;&#160;&#160; public void entityManagerTest() throws Exception &#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160; new ComponentTest() &#160;&#160;&#160;&#160;&#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; @Override&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; protected void testComponents() throws Exception &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; assert 1 == 1;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; EntityManager entityManager = (EntityManager) getInstance("entityManager");&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; assert (entityManager != null);&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }&#160;&#160;&#160;&#160;&#160;&#160;&#160; }.run();&#160;&#160;&#160; }&#160;&#160;&#160; @Test //passes&#160;&#160;&#160; public void basic () &#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160; String testStr = "basic test ";&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println (testStr);&#160;&#160;&#160;&#160;&#160;&#160;&#160; assert testStr.equals("basic test ");&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; }&#160;&#160;&#160; &#160;&#160;&#160; @Test &#160;&#160;&#160; public void injectedNodeTest () throws Exception &#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160; assert node != null;&#160; //fails&#160;&#160;&#160;&#160;&#160;&#160;&#160; node.setName("my node");&#160;&#160;&#160;&#160;&#160;&#160;&#160; assert node.getName().equals("my node");&#160;&#160;&#160; }&#160;&#160;&#160; &#160;&#160;&#160; @Test&#160;&#160;&#160; public void injectionEntityManagerTest () throws Exception&#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160; new ComponentTest ()&#160;&#160;&#160;&#160;&#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; @Override &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; protected void testComponents () throws Exception&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; assert em != null;&#160; //fails&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }&#160;&#160;&#160;&#160;&#160;&#160;&#160; }.run ();&#160;&#160;&#160; }}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/535579#535579">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Tools at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2128">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>