How to Integrate Robotium test cases and Testlink, also send the result back to testlink [closed] - integration

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Testlink is a test management tool and i want to trigger robotium test cases from testlink and get the result back to testlink..Any help would be appreciated

The easiest way I know of is to use the Test Link plugin for jenkins.
You basically map the name of the junit test to the test in testlink and it will automatically bring across the results.

Related

How to deliver new features (Website) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have recently been thinking about one of my websites. It's getting big and gaining a community and I have realized; how would I implement new features. Would I code instantly on the website or would I have to pull a backup and code on it then put it back up on the server. Because both methods seem to be inefficient.
Would there be a way that I can do such a thing, like a version system (similar to apps)?
Create a duplicate, test your code until you're satisfied. Check the edge cases. Try to break it. Then, when you're sure it's solid, roll it out to your users during very light usage because you might need to turn off the whole site during the upgrade.
Testing, testing, testing is they key.

Create a dashboard for online users [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a requirement and i think i need your help to start it.Actually i have created an application which monitors the status of users which are saved in mysql database with their status.By status i mean 4 types Online,Offline,LoggedIn,LoggedOff.So according to these status i need to display them on the dashborad.Isearched in internet about possible plugins or something,but alas! couldn't find any relevant article.I think this needs css.I am not sure how to start it.Can anyone share some ideas about the same ?
You should start with Bootstrap framework, it is created atop of CSS and JS. Here is nice template that you can use as a starting point. SB Admin 2

Not MD5 - What Chaacters are these ? MySQL [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
please check the below images... i have download a script from internet. and when i am registering in forunt end. it is saving login and passwords in some format (not md5)
actually the 1st and 3rd password is different.. but it looks like same.. i am confused.. please have a look on image below.
login and passwords in db
test test
vishnu vishnu
test2 test1
1) i.stack.imgur.com/Oo4mK.png
2) i.stack.imgur.com/8w4E4.png
SCRIPT I USED : http://sourceforge.net/projects/oes/
It uses MySQL's ENCODE and DECODE functions with a salt of oespass. This is, by the way, very bad.

How can I test MySQL statements online? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I need a online website to test MySQL statements (some sort of sandbox). Bonus points if you can store code and share it with other people. Something similar to jsfiddle.net for JavaScript. It allows code testing in a safe secure environment.
Theres an sql formatting tool that also reports syntax errors:
http://www.dpriver.com/pp/sqlformat.htm

What is a Sanity Suite? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I read an article about Test Driven Datamigration (German, PDF) and they mentioned a Sanity Suite. It is not well explained and there's no definition.
Is there a definition or is it a spongy word?
This is a small set of unit or integration tests, just to check sanity -- that the system basically works.
It can be useful to extract such a suite from your larger suite of automated tests for rapid testing when you don't have time for the full suite.
In practice, the sanity suite is often all that is developed, though it is better than nothing.