Top "Parameterized" questions

JUnit's @Parameterized runner provides support for parameterized tests.

JComboBox is a raw type. References to generic type JComboBox<E> should be parameterized

String[] boxOptions = {"1","2","4","8","16","20","40","100","400"}; JComboBox box = new JComboBox(boxOptions); I had these exact lines of code in my program before, and wasn't …

java generics parameterized type-safety
How do I use paramertized generic types in an inner class?

I am trying to implement an inner class that has a generic parameterized type. Here is a short version of …

java generics inner-classes parameterized
Retrieve build number or artifacts of downstream build in Jenkins

I have a job (call it BIGJOB) in Jenkins; several of the build steps are to trigger builds on other …

hudson jenkins parameterized
Returning an objects subclass with generics

With an abstract class I want to define a method that returns "this" for the subclasses: public abstract class Foo { ... …

java generics subclass parameterized return-type
Excluding a non param test in parameterized test class

Is there any annotation in JUnit to exclude a non param test in parameterized test class?

java junit parameterized
A way to see query after parameters are applied?

In a C# application, I'm building a query by creating a query string with parameters, then to the command adding …

c# .net mysql parameterized
ASP Classic Named Parameter in Paramaterized Query: Must declare the scalar variable

I'm trying to write a parameterized query in ASP Classic, and it's starting to feel like i'm beating my head …

asp-classic parameterized named-parameters
How to run selected junit tests with different parameters

I want to run selected test methods from any test class with different parameters Ex: 1) ClassA -> Test methods …

java junit customization parameterized
Junit Parameterized tests together with Powermock - how?

I've been trying to figure out how to run parameterized tests in Junit4 together with PowerMock. The problem is that …

java junit powermock parameterized
How do I test exceptions in a parameterized test?

In JUnit4 you can write parameterized unit tests by providing parameters collection in one method, which will be passed to …

java unit-testing junit junit4 parameterized