24 lines
611 B
Python
24 lines
611 B
Python
"""Tests the part of stlconverters that is accessible from Python."""
|
|
###################
|
|
### WARNING!!! ###
|
|
###################
|
|
# This file has been autogenerated
|
|
from __future__ import print_function
|
|
from unittest import TestCase
|
|
import nose
|
|
|
|
from nose.tools import assert_equal, assert_not_equal, assert_raises, raises, \
|
|
assert_almost_equal, assert_true, assert_false, assert_in
|
|
|
|
from numpy.testing import assert_array_equal, assert_array_almost_equal
|
|
|
|
import os
|
|
import numpy as np
|
|
from collections import Container, Mapping
|
|
|
|
from _yap import stlcontainers
|
|
|
|
|
|
if __name__ == '__main__':
|
|
nose.run()
|