<?php

/*
 * Make sure you have already installed dependencies via composer,
 * otherwise the require will fail.
 */
require __DIR__ . '../../../vendor/autoload.php';
use SergioCarlos\IBMWatson\WatsonLanguageTranslator\Translator\Factory as TranslatorFactory;
$username = '******';
$password = '******';
$translator = TranslatorFactory::getTranslator($username, $password);
$textToIdentify = 'pomme';
// This is 'apple' in French.
echo $translator->identifyLanguage($textToIdentify);
// Should be 'fr' which is the code for French.
 public function testFactoryReturnsTranslator()
 {
     $this->assertInstanceOf(TranslatorClient::class, Factory::getTranslator('username', 'password'));
 }