parameterized Questions

1

I cannot find the reason of the errors from previously asked questions, because they were about "@Test" (which does not allow custom data types). I have a program which takes a String type input ...
Leftwich asked 13/7, 2018 at 7:24

5

Here is my selenium testng script and XML file. I am getting the error message. Please help me how to proceed this Err MSG : Parameter 'Name' is required by @Test on method parametertest but has n...
Morpho asked 18/9, 2015 at 18:4

2

Solved

Setup I have two jobs in Jenkins: build master - this builds the code and creates an artifact deploy master - this deploys the artifact Currently, deploy master has "Copy artifacts from anothe...
Cryptocrystalline asked 27/5, 2016 at 14:38

1

Google provide new classes to write tests for Android, and especially using jUnit 4: https://developer.android.com/tools/testing-support-library/index.html I was wondering if it is possible to use...
Plano asked 9/4, 2015 at 12:3

5

Solved

What is the difference between a Theory and a Parameterized test? I'm not interested in implementation differences when creating the test classes, just when you would choose one over the other.
Nigelniger asked 20/4, 2011 at 8:37

2

With @RunWith( Suite.class ) I can group test classes into a test suite and run them all together. With @RunWith( Parameterized.class ) I can run the same test for different parameters. What I want...
Salvatoresalvay asked 30/4, 2012 at 17:6

4

Solved

I use @Parameterized in many cases to run tests on a number of permutations. This works very well and keeps the test-code itself simple and clean. However sometimes I would like to have some...
Warfarin asked 25/9, 2015 at 6:45

1

Solved

I'd like to do something like this in jUnit: @Runwith(Parameterized.class) public abstract class BaseTest { protected abstract List<Object[]> extraParams(); protected abstract ClassUnderT...
Outlaw asked 28/10, 2016 at 16:41

4

Solved

I have a stored procedure when I execute it I got error Conversion failed when converting the varchar value '+@dptId+' to data type int I am getting DepartmentId as a string like (1,3,5,77) a...
Freer asked 1/6, 2013 at 11:11

3

Solved

Parameterized testing is good to have different data to feed into your test. However, I created a sample calculator that I want to create parameterized tests for. However, I have found that you can...
Riverhead asked 15/4, 2016 at 7:21

6

Solved

So I recently learned that I should absolutely be using parametrized query's to avoid security issues such as SQL injection. That's all fine and all, I got it working. This code shows some of the...
View asked 28/11, 2012 at 7:44

3

Solved

I have a job (call it BIGJOB) in Jenkins; several of the build steps are to trigger builds on other jobs (call them SMALLJOB) using the Parameterized Trigger Plugin then wait for them to complete. ...
Gillan asked 20/8, 2011 at 16:17

3

There is a nice possibility to run JUnit test with parameters where the same test method is executed multiple times with different data as described here: http://junit.org/apidocs/org/junit/runners...
Kaine asked 9/2, 2012 at 17:2

3

Solved

in java, what is wrong with this assignment: Map<String, Object> mObj = new HashMap<String, String[]>(); I get: error: incompatible types: HashMap<String,String[]> cannot be c...

1

I currently have an abstract BaseTest class which holds several generic @Test's. public abstract class BaseTest { private String expected; private String actual; public BaseTest(String expect...
Timoshenko asked 29/10, 2015 at 17:10

5

I am using jUnit to manage integration tests for an application that accesses a database. Because setting up the test data is a time-consuming operation, I have been doing that in the @BeforeClass ...
Triumphant asked 22/6, 2012 at 20:47

2

Solved

IDE: PyCharm Community Edition 3.1.1 Python: 2.7.6 I using DDT for test parameterization http://ddt.readthedocs.org/en/latest/example.html I want to choose and run parameterized test method from...
Consuelaconsuelo asked 10/5, 2014 at 9:12

3

Solved

I was wondering, aside from syntactic difference, when would one use a generic interface over a method that accepts a generic parameter? public interface Flight<T>{ void fly(T obj); } ove...
Britishism asked 1/6, 2015 at 13:55

2

Solved

I want to run selected test methods from any test class with different parameters Ex: 1) ClassA -> Test methods A, B @Test public void testA(String param) { System.out.println("From A: "+param);...
Sula asked 11/5, 2015 at 6:58

3

Solved

I try to use parameterized types in OCaml but it doesnt't work :( In a first file "tree.ml" I define the type : type 'a tree = | Node of ('a tree)*('a tree) | Leaf of 'a In another file "in...
Nightwalker asked 11/5, 2014 at 17:51

6

Solved

In Hudson/Jenkins, is it possible to replace the entire string in the Subversion Module Repository URL with a String parameter? I don't want to just replace just the version or anything like that, ...
Astound asked 21/4, 2011 at 22:3

1

I am trying to use parameterized derived types in a subroutine using an unlimited polymorphic pointer. Is is possible to use a 'select type' clause for parameterized types? I've tried something ...
Auklet asked 16/5, 2014 at 15:2

2

Solved

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 getting this error....
Verge asked 15/12, 2013 at 15:13

2

Solved

I was going through mochiweb source code and got to see something i never used before. The module declaration especially in mochiweb_request and mochiweb_response modules found in the mochiweb http...
Isogamete asked 17/3, 2011 at 12:29

4

I have a test class as follows: [TestFixture("someurl1", new[] { "param1", "param2" }, 15)] [TestFixture("someurl2", new[] { "param3" }, 15)] public class my_test { public my_test(string url, str...
Schwarzwald asked 5/4, 2012 at 13:39

© 2022 - 2024 — McMap. All rights reserved.