_client = $graphTestBase->graphClient; } /** * @group functional */ public function testBetaGetStore() { $store = $this->_client->setApiVersion("beta") ->createRequest("GET", "/termstore") ->setReturnType(BetaStore::class) ->execute(); $this->assertNotNull($store->getDefaultLanguageTag()); } }