单项选择题下面属于白盒测试方法的是
单项选择题有如下类定义: class Box{ public: double GetLength() { return length; } double GetWidth(); double GetHeight(); private: double length,width,height; }; inline double Box::GetWidth() { return width; } double Box::GetHeight() { return height; }在成员函数 GetLenth、GetWidth 和 GetHeight 中,内联函数有