@@ -96,7 +96,7 @@ public void Action_ChangedWithSampleData_ShouldUpdatePictures()
9696 Is . EqualTo ( expectedExternalFileName ) ) ;
9797
9898 LfMultiText expectedNewCaption = LfMultiText . FromLcmMultiString (
99- entry . SensesOS [ 0 ] . PicturesOS [ 0 ] . Caption , entry . Guid , cache . ServiceLocator . WritingSystemFactory ) ;
99+ entry . SensesOS [ 0 ] . PicturesOS [ 0 ] . Caption , cache . ServiceLocator . WritingSystemFactory ) ;
100100 int expectedNumOfNewCaptions = expectedNewCaption . Count ( ) ;
101101 Assert . That ( expectedNumOfNewCaptions , Is . EqualTo ( 2 ) ) ;
102102 string expectedNewVernacularCaption = expectedNewCaption [ "qaa-x-kal" ] . Value ;
@@ -207,7 +207,7 @@ public void Action_WithOneNewEntry_ShouldCountOneAdded()
207207 LcmCache cache = lfProj . FieldWorksProject . Cache ;
208208 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
209209 string newLexeme = "new lexeme for this test" ;
210- newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme , newEntry . Guid . Value ) ;
210+ newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme ) ;
211211 newEntry . AuthorInfo = new LfAuthorInfo ( ) ;
212212 newEntry . AuthorInfo . CreatedDate = DateTime . UtcNow ;
213213 newEntry . AuthorInfo . ModifiedDate = newEntry . AuthorInfo . CreatedDate ;
@@ -237,7 +237,7 @@ public void Action_WithOneModifiedEntry_ShouldCountOneModified()
237237 LcmCache cache = lfProj . FieldWorksProject . Cache ;
238238 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
239239 string changedLexeme = "modified lexeme for this test" ;
240- entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme , entryGuid ) ;
240+ entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme ) ;
241241 entry . AuthorInfo = new LfAuthorInfo ( ) ;
242242 entry . AuthorInfo . ModifiedDate = DateTime . UtcNow ;
243243 _conn . UpdateMockLfLexEntry ( entry ) ;
@@ -289,7 +289,7 @@ public void Action_WithTwoNewEntries_ShouldCountTwoAdded()
289289 LcmCache cache = lfProj . FieldWorksProject . Cache ;
290290 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
291291 string newLexeme = "new lexeme for this test" ;
292- newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme , newEntry . Guid . Value ) ;
292+ newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme ) ;
293293 newEntry . AuthorInfo = new LfAuthorInfo ( ) ;
294294 newEntry . AuthorInfo . CreatedDate = DateTime . UtcNow ;
295295 newEntry . AuthorInfo . ModifiedDate = newEntry . AuthorInfo . CreatedDate ;
@@ -298,7 +298,7 @@ public void Action_WithTwoNewEntries_ShouldCountTwoAdded()
298298 LfLexEntry newEntry2 = new LfLexEntry ( ) ;
299299 newEntry2 . Guid = Guid . NewGuid ( ) ;
300300 string newLexeme2 = "new lexeme #2 for this test" ;
301- newEntry2 . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme2 , newEntry2 . Guid . Value ) ;
301+ newEntry2 . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme2 ) ;
302302 newEntry2 . AuthorInfo = new LfAuthorInfo ( ) ;
303303 newEntry2 . AuthorInfo . CreatedDate = DateTime . UtcNow ;
304304 newEntry2 . AuthorInfo . ModifiedDate = newEntry2 . AuthorInfo . CreatedDate ;
@@ -328,15 +328,15 @@ public void Action_WithTwoModifiedEntries_ShouldCountTwoModified()
328328 LcmCache cache = lfProj . FieldWorksProject . Cache ;
329329 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
330330 string changedLexeme = "modified lexeme for this test" ;
331- entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme , entryGuid ) ;
331+ entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme ) ;
332332 entry . AuthorInfo = new LfAuthorInfo ( ) ;
333333 entry . AuthorInfo . ModifiedDate = DateTime . UtcNow ;
334334 _conn . UpdateMockLfLexEntry ( entry ) ;
335335
336336 Guid kenGuid = Guid . Parse ( KenEntryGuidStr ) ;
337337 LfLexEntry kenEntry = _conn . GetLfLexEntryByGuid ( kenGuid ) ;
338338 string changedLexeme2 = "modified lexeme #2 for this test" ;
339- kenEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme2 , kenGuid ) ;
339+ kenEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme2 ) ;
340340 kenEntry . AuthorInfo = new LfAuthorInfo ( ) ;
341341 kenEntry . AuthorInfo . ModifiedDate = DateTime . UtcNow ;
342342 _conn . UpdateMockLfLexEntry ( kenEntry ) ;
@@ -392,7 +392,7 @@ public void Action_WithOneNewEntry_ShouldNotCountThatNewEntryOnSecondRun()
392392 LcmCache cache = lfProj . FieldWorksProject . Cache ;
393393 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
394394 string newLexeme = "new lexeme for this test" ;
395- newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme , newEntry . Guid . Value ) ;
395+ newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme ) ;
396396 newEntry . AuthorInfo = new LfAuthorInfo ( ) ;
397397 newEntry . AuthorInfo . CreatedDate = DateTime . UtcNow ;
398398 newEntry . AuthorInfo . ModifiedDate = newEntry . AuthorInfo . CreatedDate ;
@@ -433,7 +433,7 @@ public void Action_WithOneModifiedEntry_ShouldNotCountThatModifiedEntryOnSecondR
433433 LcmCache cache = lfProj . FieldWorksProject . Cache ;
434434 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
435435 string changedLexeme = "modified lexeme for this test" ;
436- entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme , entryGuid ) ;
436+ entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme ) ;
437437 entry . AuthorInfo = new LfAuthorInfo ( ) ;
438438 entry . AuthorInfo . ModifiedDate = DateTime . UtcNow ;
439439 _conn . UpdateMockLfLexEntry ( entry ) ;
@@ -507,7 +507,7 @@ public void Action_RunTwiceWithOneNewEntryEachTime_ShouldCountTwoAddedInTotal()
507507 LcmCache cache = lfProj . FieldWorksProject . Cache ;
508508 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
509509 string newLexeme = "new lexeme for this test" ;
510- newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme , newEntry . Guid . Value ) ;
510+ newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme ) ;
511511 newEntry . AuthorInfo = new LfAuthorInfo ( ) ;
512512 newEntry . AuthorInfo . CreatedDate = DateTime . UtcNow ;
513513 newEntry . AuthorInfo . ModifiedDate = newEntry . AuthorInfo . CreatedDate ;
@@ -528,7 +528,7 @@ public void Action_RunTwiceWithOneNewEntryEachTime_ShouldCountTwoAddedInTotal()
528528 newEntry = new LfLexEntry ( ) ;
529529 newEntry . Guid = Guid . NewGuid ( ) ;
530530 newLexeme = "second new lexeme for this test" ;
531- newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme , newEntry . Guid . Value ) ;
531+ newEntry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , newLexeme ) ;
532532 newEntry . AuthorInfo = new LfAuthorInfo ( ) ;
533533 newEntry . AuthorInfo . CreatedDate = DateTime . UtcNow ;
534534 newEntry . AuthorInfo . ModifiedDate = newEntry . AuthorInfo . CreatedDate ;
@@ -560,7 +560,7 @@ public void Action_RunTwiceWithTheSameEntryModifiedEachTime_ShouldCountTwoModifi
560560 LcmCache cache = lfProj . FieldWorksProject . Cache ;
561561 string vernacularWS = cache . LanguageProject . DefaultVernacularWritingSystem . Id ;
562562 string changedLexeme = "modified lexeme for this test" ;
563- entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme , entryGuid ) ;
563+ entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme ) ;
564564 entry . AuthorInfo = new LfAuthorInfo ( ) ;
565565 entry . AuthorInfo . ModifiedDate = DateTime . UtcNow ;
566566 _conn . UpdateMockLfLexEntry ( entry ) ;
@@ -578,7 +578,7 @@ public void Action_RunTwiceWithTheSameEntryModifiedEachTime_ShouldCountTwoModifi
578578
579579 // Setup second run
580580 string changedLexeme2 = "second modified lexeme for this test" ;
581- entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme2 , entryGuid ) ;
581+ entry . Lexeme = LfMultiText . FromSingleStringMapping ( vernacularWS , changedLexeme2 ) ;
582582 entry . AuthorInfo = new LfAuthorInfo ( ) ;
583583 entry . AuthorInfo . ModifiedDate = DateTime . UtcNow ;
584584 _conn . UpdateMockLfLexEntry ( entry ) ;
0 commit comments