public void Test_RavenDB_SearchWebTextLeftJoin()
        {
            // Arrange
            TranslateController controller = new TranslateController();
            var realRepo = new WebTextRepoRavenDB();
            controller.WebTextRepo = realRepo;
            string controllName = "Home";
            string actionName = "Index";
            string langName = "jp";
            string fromLang = "en";
            string message = "Translate Shorjini Kempo Camp Stockholm 2014 for language " + langName;
            // Act
            ViewResult result = controller.Index(controllName, actionName, langName, fromLang) as ViewResult;

            // Assert
            Assert.AreEqual(message, result.ViewBag.Message);
        }