chein91 / concerto-platform

Automatically exported from code.google.com/p/concerto-platform
0 stars 0 forks source link

Test Input Parameters are not properly assigned #48

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. create a test and add multiple test input parameters
2. inspect the different paramameter objects
3. all parameter objects have the value of the first get-parameter assigned
   example: concerto/?wid=1&tid=3&one=foo&two=bar

   toJSON(one)
   "{\"name\":\"one\",\"value\":\"foo\"}" 
   toJSON(two)
   "{\"name\":\"one\",\"value\":\"foo\"}" 

What is the expected output? What do you see instead?

Every parameter value should be assignend to its respective object.
   toJSON(one)
   "{\"name\":\"one\",\"value\":\"foo\"}" 
   toJSON(two)
   "{\"name\":\"two\",\"value\":\"bar\"}" 

What version of the product are you using? On what operating system?
concerto 4.0.0.beta5
R version 3.0.1 (2013-05-16) -- "Good Sport"
PHP 5.3.10-1ubuntu3.7 with Suhosin-Patch (cli) (built: Jul 15 2013 18:05:44)

Original issue reported on code.google.com by Sebastia...@gmail.com on 22 Jul 2013 at 10:09

GoogleCodeExporter commented 9 years ago
Already fixed in beta6.

Original comment by LisPrzem...@gmail.com on 22 Jul 2013 at 10:59