Skip to content

Commit e3efe47

Browse files
committed
Add missing headers for unit test files.
1 parent c5b2030 commit e3efe47

9 files changed

+126
-0
lines changed

pyobjcryst/tests/pyobjcrysttest.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2009 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Small tests for pyobjcryst.
317
418
To check for memory leaks, run

pyobjcryst/tests/pyobjcrysttestutils.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2009 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Utilities for tests."""
317

418
import os

pyobjcryst/tests/testcif.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2009 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Tests for crystal module."""
317

418
import unittest

pyobjcryst/tests/testclocks.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2010 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Tests for crystal module."""
317

418
import unittest

pyobjcryst/tests/testconverters.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2009 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Test the converters.
317
418
This verifies results from tests built into the _registerconverters module.

pyobjcryst/tests/testcrystal.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2009 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Tests for crystal module."""
317

418
import unittest

pyobjcryst/tests/testmolecule.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2009 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Tests for molecule module."""
317

418
import unittest

pyobjcryst/tests/testrefinableobj.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2009 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Tests for refinableobj module."""
317

418
from pyobjcryst.refinableobj import *

pyobjcryst/tests/testutils.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# pyobjcryst by DANSE Diffraction group
5+
# Simon J. L. Billinge
6+
# (c) 2010 The Trustees of Columbia University
7+
# in the City of New York. All rights reserved.
8+
#
9+
# File coded by: Chris Farrow
10+
#
11+
# See AUTHORS.txt for a list of people who contributed.
12+
# See LICENSE.txt for license information.
13+
#
14+
##############################################################################
15+
216
"""Tests for crystal module."""
317

418
import os

0 commit comments

Comments
 (0)