Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I use a variety of tools for testing purposes: ScalaTest, JUnit, Specs2 etc.
I'm looking for a tool that is capable of:
Storing test results in a database
collecting test results
running them across servers
Has a simple UI with navigation
A perfect example is TestSwarm: http://swarm.jquery.org/, for JavaScript testing.
Is there such a framework available for the JVM world?
I suppose you could write your own framework based on Specs2. Specs2 returns Result of an assertion, so it's possible to collect those results together afterwards. You can store them in DB with a full class name. Your test harness would work like map-reduce in this case, mapping tests to different servers, and then at the final step you would combine those results and produce a report.
I don't know of any tool like that. What is a practical purpose of such a thing?
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
The project aims to analyzing the patients’ illness cells using Big Data technology to indicate which treatments could have the best outcomes and fewest side effects.
But I think using python or java library. I can't decide which language's library is more useful for my project. if you have any experience , could you help me. I do not know about anything about big data.
Check out Anaconda. It's got just about every library you'll need for big data analysis bundled into one installer.
The Anaconda distro also includes Disco MapReduce, so you have all the tools you need to set up a distributed file system MapReduce farm for really large analysis jobs.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to find tools that mutate Java source code. I am looking for these tools in order to assess the effectiveness of automated debugging algorithms. To date, I have been manually injecting faults in programs in order to test these algorithms. I think mutation will be a nice way to automate this task.
So far, I have only been able to find Mutation Testing tools, like Pitest and Jester.
These tools, despite having the mutators I'm looking for, do not save the mutated source files, which is what I'm after. So, please, do not recommend me Mutation Testing tools that only mutate programs in-memory.
Are there such tools available?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there any programs that are simple and stand-alone that can convert UML diagrams to java code? If there isn't what is the best eclipse plug-in?
You can also try a web application like genmymodel
It enables to generate from UML to Java. If you use a github repository, you can also preserve your changes between each generation (using JMerge annotations).
You have two way to work with UML.
First approach is to model then generate code from model. The best tools are Rational and Modelio Soft.
Second approach is to live syncrhonized java and UML. The best tool is with no doubt EclipseUML Omondo.
No. Usually they produce very bad code which is unusable. From my experience it takes a lot of work to produce UML model and it does not survive first week of implementation.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to mobile testing and i want to test the ios apps through any of the automation tools available in the market,could you please suggest me which tool is best ? and useful links to that tool for how to use that tool in a proper manner
I personally prefer Calabash which is built on Cucumber if you want to do acceptance tests. Then you can automate your builds using Jenkins. There are support for Cucumber in Jenkins as well, you can find it here.
You can use Gorrila and TestStudio.
Also StackOverFlow
Another option is Appium, which lets you write tests in many languages and test frameworks.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a lightweight framework that builds on top of the Process Manager pattern:
http://www.eaipatterns.com/ProcessManager.html
I'm specifically interested in using this for doing event processing whereby I'm interested in the success or failure outcome of a particular event and passing a message on to another "stage" based on this outcome. There may be other outcomes aside from success and failure, so I want something that's a little flexible...
I'm not really looking for a heavyweight ESB to handle this sort of situation since it seems like complete overkill. Spring integration looks ok for this sort of thing. Can anybody recommend any other frameworks to help achieve this?
The alternative is to build something using the basic Spring framework...
The Apache Camel project implements the patterns from the EIP book. I think it does exactly what you need.
Camel can be used with Spring and can be deployed in several different containers, depending on your requirements.