Enable parallel tests.
[hoomd-blue.git] / test / hoomd_script / test_update_sorter.py
blobd47e343de26d555dc00235f0bc9732f75937c2bb
1 # -*- coding: iso-8859-1 -*-
2 # Maintainer: joaander
4 from hoomd_script import *
5 import unittest
6 import os
8 # tests for update.sorter
9 class update_sorter_tests (unittest.TestCase):
10 def setUp(self):
11 print
12 init.create_random(N=100, phi_p=0.05);
14 # test set_params
15 def test_set_params(self):
17 sorter.set_params(grid=20);
19 def tearDown(self):
20 init.reset();
22 if __name__ == '__main__':
23 unittest.main(argv = ['test.py', '-v'])