@@ -524,58 +524,58 @@ impl TestEditor {
524524#[ async_trait]
525525impl AsyncEditor for TestEditor {
526526 async fn show_password_enter ( & self ) -> UserSelection {
527- println ! ( "TestEditor::show_password_enter" ) ;
527+ println ! ( "====== TestEditor::show_password_enter" ) ;
528528 let to_ret = self . return_first_selection ( ) ;
529- println ! ( "Returning {:?}" , to_ret) ;
529+ println ! ( "====== Returning {:?}" , to_ret) ;
530530 to_ret
531531 }
532532
533533 async fn show_change_password ( & self ) -> UserSelection {
534- println ! ( "TestEditor::show_change_password" ) ;
534+ println ! ( "====== TestEditor::show_change_password" ) ;
535535 let to_ret = self . return_first_selection ( ) ;
536- println ! ( "Returning {:?}" , to_ret) ;
536+ println ! ( "====== Returning {:?}" , to_ret) ;
537537 to_ret
538538 }
539539
540540 async fn show_menu ( & self , m : Menu ) -> UserSelection {
541- println ! ( "TestEditor::show_menu {:?}" , m) ;
541+ println ! ( "====== TestEditor::show_menu {:?}" , m) ;
542542 let to_ret = self . return_first_selection ( ) ;
543- println ! ( "Returning {:?}" , to_ret) ;
543+ println ! ( "====== Returning {:?}" , to_ret) ;
544544 to_ret
545545 }
546546
547547 async fn show_entries ( & self , entries : Vec < Entry > , filter : String ) -> UserSelection {
548- println ! ( "TestEditor::show_entries {:?} with filter {}" , entries, filter) ;
548+ println ! ( "====== TestEditor::show_entries {:?} with filter {}" , entries, filter) ;
549549 let to_ret = self . return_first_selection ( ) ;
550- println ! ( "Returning {:?}" , to_ret) ;
550+ println ! ( "====== Returning {:?}" , to_ret) ;
551551 to_ret
552552 }
553553
554554 async fn show_entry ( & self , entry : Entry , index : usize , presentation_type : EntryPresentationType ) -> UserSelection {
555- println ! ( "TestEditor::show_entry {:?} with index {} and presentation_type {:?}" , entry, index, presentation_type) ;
555+ println ! ( "====== TestEditor::show_entry {:?} with index {} and presentation_type {:?}" , entry, index, presentation_type) ;
556556 let to_ret = self . return_first_selection ( ) ;
557- println ! ( "Returning {:?}" , to_ret) ;
557+ println ! ( "====== Returning {:?}" , to_ret) ;
558558 to_ret
559559 }
560560
561561 async fn exit ( & self , force : bool ) -> UserSelection {
562- println ! ( "TestEditor::exit {}" , force) ;
562+ println ! ( "====== TestEditor::exit {}" , force) ;
563563 let to_ret = self . return_first_selection ( ) ;
564- println ! ( "Returning {:?}" , to_ret) ;
564+ println ! ( "====== Returning {:?}" , to_ret) ;
565565 to_ret
566566 }
567567
568568 async fn show_configuration ( & self , nextcloud : NextcloudConfiguration , dropbox : DropboxConfiguration , gen : GeneralConfiguration ) -> UserSelection {
569- println ! ( "TestEditor::show_configuration with {:?}, {:?} and {:?}" , nextcloud, dropbox, gen ) ;
569+ println ! ( "====== TestEditor::show_configuration with {:?}, {:?} and {:?}" , nextcloud, dropbox, gen ) ;
570570 let to_ret = self . return_first_selection ( ) ;
571- println ! ( "Returning {:?}" , to_ret) ;
571+ println ! ( "====== Returning {:?}" , to_ret) ;
572572 to_ret
573573 }
574574
575575 async fn show_message ( & self , m : & str , _: Vec < UserOption > , _: MessageSeverity ) -> UserSelection {
576- println ! ( "TestEditor::show_message {}" , m) ;
576+ println ! ( "====== TestEditor::show_message {}" , m) ;
577577 let to_ret = self . return_first_selection ( ) ;
578- println ! ( "Returning {:?}" , to_ret) ;
578+ println ! ( "====== Returning {:?}" , to_ret) ;
579579 to_ret
580580 }
581581
0 commit comments