There are cases where I do tests like that. There are two reasons for them.
1. It can save time debugging failures because I know whether the basic instantiation of thing was sane or not.
2. There are cases where there are complex object instantiation tests where an object is returned according to some other logic. Obviously these need to be tested.
In the first case those aren't tests for the sake of testing the API. They are sanity checks for saving time troubleshooting other test case failures.
That's what it is. You have a unified interface for generating things, and you need to have deterministic test to make sure your thing is being generated correctly and the data generates the thing fully and correctly.