Skip to content

Commit

Permalink
BVTCK-39 Disabling test related to https://hibernate.onjira.com/brows…
Browse files Browse the repository at this point in the history
  • Loading branch information
hferentschik committed Feb 20, 2013
1 parent 46a51c5 commit 47e434a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
Expand Up @@ -362,8 +362,9 @@ public void testGetInvalidValueForCrossParameterConstraint() throws Exception {
assertEquals( violations.iterator().next().getInvalidValue(), parameterValues );
}

@Test
@SpecAssertion(section = "5.2", id = "g")
// @Test
// @SpecAssertion(section = "5.2", id = "g")
// TODO - https://hibernate.onjira.com/browse/BVTCK-40
public void testGetInvalidValueForCrossParameterConstraintOnParameterlessMethod()
throws Exception {
Constructor<User> constructor = User.class.getConstructor();
Expand Down
Expand Up @@ -397,8 +397,9 @@ public void testGetInvalidValueForCrossParameterConstraint() throws Exception {
assertEquals( violations.iterator().next().getInvalidValue(), parameterValues );
}

@Test
@SpecAssertion(section = "5.2", id = "e")
// @Test
// @SpecAssertion(section = "5.2", id = "e")
// TODO - https://hibernate.onjira.com/browse/BVTCK-40
public void testGetInvalidValueForCrossParameterConstraintOnParameterlessMethod()
throws Exception {
String methodName = "setAddress";
Expand Down
Expand Up @@ -117,11 +117,13 @@ public User(String street, String houseNo, String city) {
}

//testGetInvalidValueForCrossParameterConstraintOnParameterlessMethod
@MyCrossParameterConstraint
// @MyCrossParameterConstraint
// https://hibernate.onjira.com/browse/BVTCK-40
public void setAddress() {
}

@MyCrossParameterConstraint
// @MyCrossParameterConstraint
// TODO - https://hibernate.onjira.com/browse/BVTCK-40
public User() {
}
}

0 comments on commit 47e434a

Please sign in to comment.