initial project code commit
This commit is contained in:
30
arttools/tests/test_artdatatable.py
Normal file
30
arttools/tests/test_artdatatable.py
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf8 -*-
|
||||
# -----------------------------------------------------------------------------
|
||||
# Copyright (c) 2020 Space Research Institute (http://iki.rssi.ru/)
|
||||
#
|
||||
# This file is part of ARTXC software project.
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
import os, sys
|
||||
import unittest
|
||||
import unittest.mock as mock
|
||||
|
||||
import numpy as np
|
||||
|
||||
sys.path.append('../src')
|
||||
|
||||
from pyartxc.gti import Gti
|
||||
|
||||
|
||||
class Test_(unittest.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
pass
|
||||
|
||||
def test_create_empty(self):
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user