Skip to content

Commit

Permalink
Added XPathFactory test as @ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Mar 11, 2013
1 parent f9d1e4c commit 8ed6057
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
package org.jboss.forge.container;

import javax.inject.Inject;
import javax.xml.xpath.XPathFactory;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.forge.arquillian.archive.ForgeArchive;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand Down Expand Up @@ -34,4 +36,13 @@ public void testContainerStartup()
{
Assert.assertTrue(observer.isObservedPostStartup());
}

@Test
@Ignore("FORGE-820")
//TODO: Remove the ignore annotation when FORGE-820 is solved
public void testContainerSupportsXPath()
{
Assert.assertNotNull(XPathFactory.newInstance().newXPath());
}

}

0 comments on commit 8ed6057

Please sign in to comment.