Repository: incubator-taverna-language Updated Branches: refs/heads/master 212d30b99 -> f468aa9a1
Test cases for conversion, validation, stats and tools Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/commit/969836a9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/969836a9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/969836a9 Branch: refs/heads/master Commit: 969836a9c26f1f3ac40b809a3ae86f8ea440c3d4 Parents: d8317cc Author: Menaka Madushanka <[email protected]> Authored: Fri Jul 10 11:28:01 2015 +0530 Committer: Menaka Madushanka <[email protected]> Committed: Fri Jul 10 11:28:01 2015 +0530 ---------------------------------------------------------------------- .../taverna/tavlang/test/Scufl2ConvertTest.java | 34 -------------------- .../taverna/tavlang/test/TestConvert.java | 34 ++++++++++++++++++++ .../apache/taverna/tavlang/test/TestStats.java | 34 ++++++++++++++++++++ .../apache/taverna/tavlang/test/TestTools.java | 14 ++++++++ .../taverna/tavlang/test/TestValidate.java | 34 ++++++++++++++++++++ 5 files changed, 116 insertions(+), 34 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/969836a9/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/Scufl2ConvertTest.java ---------------------------------------------------------------------- diff --git a/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/Scufl2ConvertTest.java b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/Scufl2ConvertTest.java deleted file mode 100644 index cb33241..0000000 --- a/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/Scufl2ConvertTest.java +++ /dev/null @@ -1,34 +0,0 @@ -package org.apache.taverna.tavlang.test; - -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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. - */ - -import static org.junit.Assert.*; - -import org.junit.Test; - -public class Scufl2ConvertTest{ - - @Test - public void testConvertS() { -// fail("Not yet implemented"); - - } - -} http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/969836a9/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestConvert.java ---------------------------------------------------------------------- diff --git a/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestConvert.java b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestConvert.java new file mode 100644 index 0000000..a920db2 --- /dev/null +++ b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestConvert.java @@ -0,0 +1,34 @@ +package org.apache.taverna.tavlang.test; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + */ + +import static org.junit.Assert.*; + +import org.junit.Test; + +public class TestConvert{ + + @Test + public void testConvertS() { +// fail("Not yet implemented"); + + } + +} http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/969836a9/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestStats.java ---------------------------------------------------------------------- diff --git a/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestStats.java b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestStats.java new file mode 100644 index 0000000..690a415 --- /dev/null +++ b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestStats.java @@ -0,0 +1,34 @@ +package org.apache.taverna.tavlang.test; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + */ + + +import static org.junit.Assert.*; + +import org.junit.Test; + +public class TestStats { + + @Test + public void test() { + fail("Not yet implemented"); + } + +} http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/969836a9/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestTools.java ---------------------------------------------------------------------- diff --git a/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestTools.java b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestTools.java new file mode 100644 index 0000000..a057942 --- /dev/null +++ b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestTools.java @@ -0,0 +1,14 @@ +package org.apache.taverna.tavlang.test; + +import static org.junit.Assert.*; + +import org.junit.Test; + +public class TestTools { + + @Test + public void test() { + fail("Not yet implemented"); + } + +} http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/969836a9/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestValidate.java ---------------------------------------------------------------------- diff --git a/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestValidate.java b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestValidate.java new file mode 100644 index 0000000..8e58883 --- /dev/null +++ b/taverna-language-commandline/src/test/java/org/apache/taverna/tavlang/test/TestValidate.java @@ -0,0 +1,34 @@ +package org.apache.taverna.tavlang.test; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + */ + + +import static org.junit.Assert.*; + +import org.junit.Test; + +public class TestValidate { + + @Test + public void test() { + fail("Not yet implemented"); + } + +}
