try to fix checkintests with temporary JS stubs
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/6f339dcb Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/6f339dcb Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/6f339dcb Branch: refs/heads/feature/maven-migration Commit: 6f339dcbe066083ac4fbcc9eadf085dbe7db4e70 Parents: fdbc359 Author: Alex Harui <[email protected]> Authored: Mon Apr 11 22:00:15 2016 -0700 Committer: Alex Harui <[email protected]> Committed: Mon Apr 11 22:00:25 2016 -0700 ---------------------------------------------------------------------- build.xml | 2 ++ mustella/js/AssertPropertyValue.js | 37 +++++++++++++++++++++++++++ mustella/js/DispatchMouseClickEvent.js | 37 +++++++++++++++++++++++++++ mustella/js/DispatchMouseEvent.js | 37 +++++++++++++++++++++++++++ mustella/js/ExitWhenDone.js | 37 +++++++++++++++++++++++++++ mustella/js/SendFormattedResultsToLog.js | 37 +++++++++++++++++++++++++++ mustella/js/SetProperty.js | 37 +++++++++++++++++++++++++++ mustella/js/SetShowRTE.js | 37 +++++++++++++++++++++++++++ mustella/js/TestCase.js | 37 +++++++++++++++++++++++++++ mustella/js/UnitTester.js | 37 +++++++++++++++++++++++++++ 10 files changed, 335 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 89d5e5c..43e0a6a 100644 --- a/build.xml +++ b/build.xml @@ -1147,8 +1147,10 @@ <arg value="-compiler.binding-value-change-event-type=valueChange" /> <arg value="+playerglobal.version=${playerglobal.version}" /> <arg value="+env.PLAYERGLOBAL_HOME=${env.PLAYERGLOBAL_HOME}" /> + <arg value="-library-path+=${FLEX_SDK_HOME}/mustella/mustella.swc" /> <arg value="-js-output-type=FLEXJS" /> <arg value="-closure-lib=${GOOG_HOME}" /> + <arg value="-sdk-js-lib=${FLEXJS_HOME}/mustella/js" /> <arg value="-sdk-js-lib=${FLEXJS_HOME}/frameworks/js/FlexJS/libs" /> <arg value="${basedir}/mustella/tests/basicTests/BasicTestsApp.mxml" /> </java> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/AssertPropertyValue.js ---------------------------------------------------------------------- diff --git a/mustella/js/AssertPropertyValue.js b/mustella/js/AssertPropertyValue.js new file mode 100644 index 0000000..b7c4e5b --- /dev/null +++ b/mustella/js/AssertPropertyValue.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * AssertPropertyValue (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('AssertPropertyValue'); + + + +/** + * @class + */ +AssertPropertyValue = function() { +}; + + +/** + * @param {Object} c + */ +AssertPropertyValue.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/DispatchMouseClickEvent.js ---------------------------------------------------------------------- diff --git a/mustella/js/DispatchMouseClickEvent.js b/mustella/js/DispatchMouseClickEvent.js new file mode 100644 index 0000000..69c9851 --- /dev/null +++ b/mustella/js/DispatchMouseClickEvent.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * DispatchMouseClickEvent (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('DispatchMouseClickEvent'); + + + +/** + * @class + */ +DispatchMouseClickEvent = function() { +}; + + +/** + * @param {Object} c + */ +DispatchMouseClickEvent.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/DispatchMouseEvent.js ---------------------------------------------------------------------- diff --git a/mustella/js/DispatchMouseEvent.js b/mustella/js/DispatchMouseEvent.js new file mode 100644 index 0000000..3cb3ec5 --- /dev/null +++ b/mustella/js/DispatchMouseEvent.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * DispatchMouseEvent (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('DispatchMouseEvent'); + + + +/** + * @class + */ +DispatchMouseEvent = function() { +}; + + +/** + * @param {Object} c + */ +DispatchMouseEvent.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/ExitWhenDone.js ---------------------------------------------------------------------- diff --git a/mustella/js/ExitWhenDone.js b/mustella/js/ExitWhenDone.js new file mode 100644 index 0000000..df13031 --- /dev/null +++ b/mustella/js/ExitWhenDone.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * ExitWhenDone (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('ExitWhenDone'); + + + +/** + * @class + */ +ExitWhenDone = function() { +}; + + +/** + * @param {Object} c + */ +ExitWhenDone.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/SendFormattedResultsToLog.js ---------------------------------------------------------------------- diff --git a/mustella/js/SendFormattedResultsToLog.js b/mustella/js/SendFormattedResultsToLog.js new file mode 100644 index 0000000..09c0603 --- /dev/null +++ b/mustella/js/SendFormattedResultsToLog.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * SendFormattedResultsToLog (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('SendFormattedResultsToLog'); + + + +/** + * @class + */ +SendFormattedResultsToLog = function() { +}; + + +/** + * @param {Object} c + */ +SendFormattedResultsToLog.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/SetProperty.js ---------------------------------------------------------------------- diff --git a/mustella/js/SetProperty.js b/mustella/js/SetProperty.js new file mode 100644 index 0000000..d93f990 --- /dev/null +++ b/mustella/js/SetProperty.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * SetProperty (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('SetProperty'); + + + +/** + * @class + */ +SetProperty = function() { +}; + + +/** + * @param {Object} c + */ +SetProperty.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/SetShowRTE.js ---------------------------------------------------------------------- diff --git a/mustella/js/SetShowRTE.js b/mustella/js/SetShowRTE.js new file mode 100644 index 0000000..307d45c --- /dev/null +++ b/mustella/js/SetShowRTE.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * SetShowRTE (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('SetShowRTE'); + + + +/** + * @class + */ +SetShowRTE = function() { +}; + + +/** + * @param {Object} c + */ +SetShowRTE.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/TestCase.js ---------------------------------------------------------------------- diff --git a/mustella/js/TestCase.js b/mustella/js/TestCase.js new file mode 100644 index 0000000..6f42929 --- /dev/null +++ b/mustella/js/TestCase.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * TestCase (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('TestCase'); + + + +/** + * @class + */ +TestCase = function() { +}; + + +/** + * @param {Object} c + */ +TestCase.init = function(c) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f339dcb/mustella/js/UnitTester.js ---------------------------------------------------------------------- diff --git a/mustella/js/UnitTester.js b/mustella/js/UnitTester.js new file mode 100644 index 0000000..61b7e29 --- /dev/null +++ b/mustella/js/UnitTester.js @@ -0,0 +1,37 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * UnitTester (stub, not used) + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('UnitTester'); + + + +/** + * @class + */ +UnitTester = function() { +}; + + +/** + * @param {Object} c + */ +UnitTester.init = function(c) {};
