31 lines
630 B
Python
31 lines
630 B
Python
#!/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()
|