BibSonomy ::
tag ::
order by
(
date
|
folkrank
)
The blue social bookmark and publication sharing system.
- FAQs. Build them easily in WordPress using FAQ-Tastic and FAQ-Tastic Pro.
- ScalaCheck is a powerful tool for automatic unit testing of Scala and Java programs. It features automatic test case generation and minimization of failing...ScalaCheck is a powerful tool for automatic unit testing of Scala and Java programs. It features automatic test case generation and minimization of failing test cases. ScalaCheck started out as a Scala port of the Haskell library QuickCheck, and has since evolved and been extended with features not found in Haskell QuickCheck.
- projects * run your own development projects * find interesting projects and suitable co-developers * benefit from state-of-the-art develo...projects * run your own development projects * find interesting projects and suitable co-developers * benefit from state-of-the-art development tools people * connect with coders from around the world * share your ideas with like-minded bettercoders * get help and provide support to solve problems you! * become an even better coder by collaborating with others * contribute and get recognition for your work * have lots of fun and fascinating experiences
- Gerrit is a web based code review system, facilitating online code reviews for projects using the Git version control system. Gerrit makes reviews easie...Gerrit is a web based code review system, facilitating online code reviews for projects using the Git version control system. Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer. Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer. This functionality enables a more centralized usage of Git.
- ServiceFixture is a fixture library built on top of FIT/FitNesse which enables FitNesse to be the integration test and software collaboration platform for ...ServiceFixture is a fixture library built on top of FIT/FitNesse which enables FitNesse to be the integration test and software collaboration platform for service oriented and distributed systems. These systems usually expose stateless services, such as web service (SOAP or REST), ejb and POJO etc, to its internal or external clients, and complex domain objects are always involved in the service interfaces. It is difficult to leverage FitNesse for these systems due to the fact that it is not trivial to represent complex domain objects in FIT test table, and hence it would require constant fixture development efforts to support the integration test. ServiceFixture is designed to fill this gap. ServiceFixture uses expression language to represent domain objects, verify and display the response in FIT test table. Every ServiceFixture test is basically a method invocation to a stateless service. The test starts with setting up the input data, then invoking the service operation, and then checking the response. Because the ServiceFixture is very generic, to setup ServiceFixture and FitNesse for a project, you only need to write a ServiceFixture extension to encapsulate the invocation logic once, which is pretty trivial. No more fixture development is needed after that. It also provides template creator integrated with FitNesse to make tester's life a lot easier too. ServiceFixture also provides database service fixtures(SelectFixture and UpdateFixture) which can be used to access databases directly from FitNesse test scripts. See Tutorial for more details.
- ReviewClipse is an Eclipse integrated code review plugin, which helps developers to review the source code efficient on a per changeset basis - the item un...ReviewClipse is an Eclipse integrated code review plugin, which helps developers to review the source code efficient on a per changeset basis - the item under inspection is one changeset in the revision control system.
- A tool for testing Scala and Java software OSI Certified Open Source Software ScalaTest is a free, open-source testing tool for Scala and Java programm...A tool for testing Scala and Java software OSI Certified Open Source Software ScalaTest is a free, open-source testing tool for Scala and Java programmers. It is written in Scala, and enables you to write tests in Scala to test either Scala or Java code. It is released under the Apache 2.0 open source license. Because different developers take different approaches to creating software, no single approach to testing is a good fit for everyone. In light of this reality, ScalaTest is designed to facilitate different styles of testing. ScalaTest provides several traits that you can mix together into whatever combination makes you feel the most productive.
- SONAR is a code quality management platform, dedicated to continuously analyze and measure technical quality, from the projects portfolio to the class meth...SONAR is a code quality management platform, dedicated to continuously analyze and measure technical quality, from the projects portfolio to the class method.
- JDepend sorgt für gute Beziehungen Author: dbt23 11 Mai Irgendwie spuckt jDepend interessante Werte aus, aber was so richtig damit anfangen? Nur ein...JDepend sorgt für gute Beziehungen Author: dbt23 11 Mai Irgendwie spuckt jDepend interessante Werte aus, aber was so richtig damit anfangen? Nur eine Zahl um so etwas wie Paket-Instabilität auszudrücken? Wieso soll ich mich überhaupt um zyklische Abhängigkeiten kümmern, wenn mein System doch prima läuft? Und was um alles in der Welt ist ein dot in der Graphenvisualisierung?
- The Grinder is a JavaTM load testing framework that makes it easy to run a distributed test using many load injector machines. It is freely available under...The Grinder is a JavaTM load testing framework that makes it easy to run a distributed test using many load injector machines. It is freely available under a BSD-style open-source license. The latest news, downloads, and mailing list archives can be found on SourceForge.net. Key features * Generic Approach Load test anything that has a Java API. This includes common cases such as HTTP web servers, SOAP and REST web services, and application servers (CORBA, RMI, JMS, EJBs), as well as custom protocols. * Flexible Scripting Tests are written in the powerful Jython scripting language. * Distributed Framework A graphical console allows multiple load injectors to be monitored and controlled, and provides centralised script editing and distribution. * Mature HTTP Support Automatic management of client connections and cookies. SSL. Proxy aware. Connection throttling. Sophisticated record and replay of the interaction between a browser and a web site. See the longer features list for further details.
- Static analysis to look for bugs in Java code.
- XUnit Test Patterns Refactoring Test Code
- p-unit An open source framework for unit test and performance benchmark, which was initiated by Andrew Zhang, under Apache License v2.0. p-unit supports...p-unit An open source framework for unit test and performance benchmark, which was initiated by Andrew Zhang, under Apache License v2.0. p-unit supports to run the same tests with single thread or multi-threads, tracks memory and time consumption, and generates the result in the form of plain text, image or pdf file.
- Abstract Kaputt is a unit testing tool for the Objective Caml language. Kaputt features two kinds of tests: * assertion-based tests, inspired by th...Abstract Kaputt is a unit testing tool for the Objective Caml language. Kaputt features two kinds of tests: * assertion-based tests, inspired by the xUnit tools; * specification-based tests, inspired by the QuickCheck tool. When writing assertion-based tests, the developer encodes input values and checks that output values satisfy given assertions. When writing specification-based tests, the developer encodes the specification of the tested function and then requests the library to generate random values to be tested against the specification. Licence Kaputt is released under the GPL v3. It is copyright © 2008 Xavier Clerc. Help wanted In order to improve the project, I am primarily looking for testers and bug reporters. Pointing errors in documentation and indicating where it should be enhanced is also very helpful.
- AtUnit minimizes boilerplate code in unit tests and guides test development by enforcing good practices. * mark exactly one field with @Unit to indi...AtUnit minimizes boilerplate code in unit tests and guides test development by enforcing good practices. * mark exactly one field with @Unit to indicate the object under test. * mark fields with @Mock or @Stub to obtain mock objects * inject your tests, and your test subjects, using your favorite IoC container Mock Objects Integration AtUnit integrates with JMock or EasyMock to provide mock objects: * obtain a JMock context simply by declaring a field * annotate fields with @Mock to obtain JMock or EasyMock mock objects * annotate fields with @Stub to obtain a JMock or EasyMock stub object ... or you can use your own mock objects plug-in with two easy steps: * implement the MockFramework interface * annotate your tests with @MockFrameworkClass(MyMockFramework.class) Container Integration AtUnit integrates with Guice or Spring to take all of the work out of dependency-injected tests. With Guice: * never see the Injector, never write bootstrapping boilerplate! * @Inject test class fields without even defining a Module * declaratively obtain mock objects with @Inject @Mock * if you need more binding flexibility, simply have your test class implement Module With Spring: * annotate fields with @Bean to get them from the Spring context * fields annotated with @Bean which do not appear in your Spring context are added to it automatically! (This includes @Mock and @Stub fields.) * AtUnit looks for a Spring XML file with the same name as your test, or you can specify the location yourself with @Context("filename") * Most of the time, you don't even need a Spring XML file! You can easily plug in other containers in two steps: * implement the Container interface * annotate your tests with @ContainerClass(MyContainer.class)
- AI Magazine 31(3):59-79 (2010)
- Work (2011)
- Proceedings of the 15th international conference on Advances in databases and information systems, page 285--301. Berlin, Heidelberg, Springer-Verlag, (2011)
- WWW, page 665-674. ACM, (2008)
- SIGIR, page 411-418. ACM, (2010)
- Proceedings ACL, (2006)
- Proceedings SIGIR Workshop on Information Retrieval for Question Answering IR4QA, (2004)
- (May 2009)
- Proceedings of the 2nd Meaning Workshop Meaning-2005, Trento, Italy, (2005)
- (2002)
- Natural Language Engineering 7(4):343--360 (2001)
- QUASOSS '09: Proceedings of the 1st international workshop on Quality of service-oriented software systems, page 25--32. New York, NY, USA, ACM, (2009)
- SINTER '09: Proceedings of the 2009 ESEC/FSE workshop on Software integration and evolution @ runtime, page 3--10. New York, NY, USA, ACM, (2009)
- (2007)
- Proceedings of the International Conference on Weblogs and Social Media ICWSM, (2007)
- (2007)
- Advances in Information Retrieval (2008)
- Proceedings of the Sixteenth Text REtrieval Conference TREC, (2007)
- SIGIR'03: Proceedings of the 26th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval, page 41-47. New York, ACM Press, (2003)
- (1990)


