Right now, I'm testing a Java Application with QTP (really expensive software).
I decided to move my web application testing to Selenium (using Java) and I was wondering if there were ... |
As a test engineer, I often engage in exploratory testing. When I encounter a bug, it is not always immediately clear which steps led to the problem. So, obviously, I have ... |
I remember there existed a testing program/library that will run your code and/or unit tests, creating all kinds of permutations of the parameters (null values, random integers, strings and so on). ... |
I am trying to use Jmockit API for indepentant use with out any framework for our incremental development.
But I am not able to initialize the proxy for mocked class
So I have ... |
is there a java UI testing tool (web) that converts the DOM into a java object of sort?
So I can do something like:
browser.GoToPage("google").FindButton("search").click();
|
Can someone list me 5 good softwares for "Software Testing" in java projects? I need to study 5 of them, what do you recommend?
|
I'm reading xUnit Test Patterns by Gerard Meszaros.
On one of the pages he refers to some software metrics:
While the need to wrap lines to keep
... |
|
I was wondering if there are any open source test automation solutions for flex/java projects that do not require any changes in code. Ideally, I would like to be able ... |
I'm writing application(s) in Java. I use mainly Eclipse, maven. Is it worth tu use svn if only one person (I) work now on project? Svn repository/server should be on my ... |
I'm looking for a DSL that helps to find problematic patterns in (Java) code.
It should allow to build tools like PMD and FindBugs very quickly ... |
My company has project that use Java & SHA as the algorithm to encrypt the password
MessageDigest md = MessageDigest.getInstance("SHA");
QA should use which tool to test this SHA algorithm. I search on ... |
There are different opinions on the meaningfulness of testing of private methods, e.g., here and here. I personally think it makes sense, the question is how to do it ... |
I have made a couple dozens of tests for a legacy system I was handed over.
They generally test/describe some high level feature of the system, and I generally include in the ... |
I'm trying to build system tests into Jenkins. The trouble is I need to test distributed deployments where the multiple instances of the software under test automatically connect to each other. ... |
I need to document the visual differences between two different versions of a Java program. This involves clicking on an element in the old version, then clicking on the same element ... |
|
|
I think what they are saying is just that you can use the main method as a way to test your public methods or other classes as a harness. Since the main method is a static argument it can be seen by the entire program and thus is the engine for the entire program. For instance, say you wrote a program ... |
|
Huh.. Your comment (combined with the delay since I first posted) underlined that this was not necessarily the best forum for my 'does it work/fail' query. I think I should have sent it to either Java Programming (for the more techy people) or maybe New to Java, to hopefully try and snag a couple of newbies into giving some test results. ... |
|
In my company, we have a software product in both Java and shell scripting functionality. I want to be able to automated the testing for both of them. So do you guys know about testing tool that can automated this? By the way, I did some research as well and I found Jete test tool that uses Ant and Spring framework ... |
What do you mean by "test"? If you want to test that code does what it should, JUnit's pretty good, and not hard to use once you get into the habit of writing unit tests. Used properly, it actually makes development a lot easier. I'd persevere with that if I were you As for monitoring memory, what do you mean by ... |
|