X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=test%2Fsuite.py;h=c2c7cd3fec728ef0a310135e03aa3a5c41c54fa5;hb=1936539e7ea6190f0022af5891fba2f6a094f697;hp=42671b1292c7e73f86b64b4ea8a67a6a3fb9bf4e;hpb=484bfa4de7d0507abbb2771081e9e58283726af8;p=archive%2F20170607%2Ftools%2Ftic-core.git diff --git a/test/suite.py b/test/suite.py index 42671b1..c2c7cd3 100644 --- a/test/suite.py +++ b/test/suite.py @@ -1,17 +1,35 @@ -''' -Created on Nov 9, 2016 +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# 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. +# +# Contributors: +# - S-Core Co., Ltd -@author: shinchulwoo -''' import sys import unittest from test import test_dependency +from test import test_repodata #if __name__ == "__main__": # set test-suite suite = unittest.TestSuite() +suite.addTests(test_repodata.suite()) suite.addTests(test_dependency.suite()) # run test-suite