| 14 | class BlobSimpleTest : public ::testing::Test { |
| 15 | protected: |
| 16 | BlobSimpleTest() |
| 17 | : blob_(new Blob<Dtype>()), |
| 18 | blob_preshaped_(new Blob<Dtype>(2, 3, 4, 5)) {} |
| 19 | virtual ~BlobSimpleTest() { delete blob_; delete blob_preshaped_; } |
| 20 | Blob<Dtype>* const blob_; |
| 21 | Blob<Dtype>* const blob_preshaped_; |
nothing calls this directly
no outgoing calls
no test coverage detected