Python base.BaseTestCase() Examples
The following are 1
code examples of base.BaseTestCase().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
base
, or try the search function
.
Example #1
Source File: test_growing_neural_gas.py From neupy with MIT License | 6 votes |
def setUp(self): super(BaseTestCase, self).setUp() self.data, _ = make_blobs( n_samples=1000, n_features=2, centers=2, cluster_std=0.4, random_state=0 )