This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #706 from drewfish/tests-cli
fix for mojito test app with coverage (updates pr703)
- Loading branch information
Showing
107 changed files
with
20,384 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
YUI Test | ||
Author: Nicholas C. Zakas <[email protected]> | ||
Copyright (c) 2009, Yahoo! Inc. All rights reserved. | ||
Yahoo! source code licensed under the BSD License: | ||
http://developer.yahoo.net/yui/license.txt | ||
|
||
Some portions Copyright (c) 2002 JSON.org | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
The Software shall be used for Good, not Evil. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
YUITest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
YUI Test Java Tools | ||
Author: Nicholas C. Zakas <[email protected]> | ||
www.nczonline.net | ||
Copyright (c) 2009, Yahoo! Inc. All rights reserved. | ||
|
||
Code licensed under the BSD License: | ||
http://developer.yahoo.net/yui/license.txt | ||
|
||
|
||
This software contains an ANTLR grammar based off of work from a couple of sources: | ||
|
||
The original ES3 grammar is available under a BSD License. | ||
Copyright (c) 2008-2009 Xebic Reasearch BV. Original work by Patrick Hulsmeijer. | ||
|
||
The modified ES3 grammar contains portions from JsTestDriver | ||
(http://code.google.com/p/js-test-driver/) and is available under an | ||
Apache License, Version 2.0. Copyright (c) 2009 Google Inc. | ||
|
||
|
||
This software also requires access to software from the following sources: | ||
|
||
The Jargs Library v 1.0 ( http://jargs.sourceforge.net/ ) is available | ||
under a BSD License. Copyright (c) 2001-2003 Steve Purcell, | ||
Copyright (c) 2002 Vidar Holen, Copyright (c) 2002 Michal Ceresna and | ||
Copyright (c) 2005 Ewan Mellor. | ||
|
||
The Antlr Library v3.2 (http://www.antlr.org) is available | ||
under a BSD License (http://www.antlr.org/license.html). | ||
Copyright (c) 2003-2008 Terrence Parr. | ||
|
||
The Selenium Java Client Driver Library v1.0.1 (http://www.seleniumhq.org) | ||
is available an Apache License (http://seleniumhq.org/about/license.html). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#Target JVM for the compilation | ||
target.jvm.version = 1.5 | ||
|
||
#Directories | ||
src.dir = src | ||
lib.dir = lib | ||
doc.dir = doc | ||
build.dir = build | ||
tmp.dir = tmp | ||
tests.dir = tests | ||
|
||
#Version information | ||
version.number = 0.6.4 | ||
|
||
#Code paths | ||
codepath.root.dir = com/yahoo/platform/yuitest | ||
|
||
#Libraries | ||
antlr.jar = antlr-3.2.jar | ||
antlr2.jar = antlr-2.7.7.jar | ||
antlr-runtime.jar = antlr-runtime-3.2.jar | ||
stringtemplate.jar = stringtemplate-3.2.1.jar | ||
jargs.jar = jargs-1.0.jar | ||
junit.jar = junit-4.1.jar | ||
selenium.jar = selenium-java-client-driver.jar | ||
|
||
#Coverage info | ||
coverage.name = yuitest-coverage | ||
coverage.jar.name = ${coverage.name}.jar | ||
coverage.root.dir = ${codepath.root.dir}/coverage | ||
|
||
coverage-report.name = yuitest-coverage-report | ||
coverage-report.jar.name = ${coverage-report.name}.jar | ||
coverage-report.root.dir = ${codepath.root.dir}/coverage | ||
|
||
#Selenium Driver info | ||
selenium-driver.name = yuitest-selenium-driver | ||
selenium-driver.jar.name = ${selenium-driver.name}.jar | ||
selenium-driver.root.dir = ${codepath.root.dir}/selenium |
Oops, something went wrong.