Jack Allan
Jack Allan

Reputation: 15004

Can you use TestNG's dataprovider with JBehave?

I'm looking for a BDD library that will work with TestNG (this is important because we already have a configured CI server that is integrated with TestNG). I found JBehave but want to know if it is possible to use features such as TestNG's data provider. Can someone with experience of these combined technologies show me how it can be done?

Upvotes: 3

Views: 534

Answers (1)

luboskrnac
luboskrnac

Reputation: 24561

JBehave has its own mechanism for writing parameterized tests. I recommend using that, rather than combining JBehave with TestNG's DataProvider feature.

Upvotes: 2

Related Questions