From 25f0c6348dba0603ed6d9a804639e2ea7e202eaf Mon Sep 17 00:00:00 2001 From: Chaoming Wang Date: Mon, 8 Jul 2024 06:08:56 +0100 Subject: [PATCH] fix --- dendritex/_base_test.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 dendritex/_base_test.py diff --git a/dendritex/_base_test.py b/dendritex/_base_test.py new file mode 100644 index 0000000..bed3fa6 --- /dev/null +++ b/dendritex/_base_test.py @@ -0,0 +1,21 @@ +# Copyright 2024 BDP Ecosystem Limited. All Rights Reserved. +# +# 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. +# ============================================================================== + +import unittest + +class TestIon(unittest.TestCase): + def test1(self): + pass +