I don't think there's any general consensus on what a unit test is, so it's hard to say. While some might argue it should be a very small unit of code (e.g. a method), that's pretty limiting, especially considering the fact that when you refactor a passing test, you might put that code into multiple methods or even classes.
Roy Osherove's definition is as follows:
A unit test is a fast, in-memory,
consistent, automated and repeatable
test of a functional unit-of-work in
the system.
A unit of work is any functional
scenario in the system that contains
logic. it can be as short as a
function, or it can span multiple
classes and functions, and it provides
internal or business value to the
system under test.
'Fast' and 'in-memory' are, IMO, the main thing separating this from an integration test. If you go by that, then I think the google tests are indeed unit tests.