@@ -501,7 +501,7 @@ private static IDictionary<string, List<Func<GraphTraversalSource, IDictionary<s
501501 { "g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXoutX_timesX2X" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithoutStrategies ( typeof ( RepeatUnrollStrategy ) ) . V ( ) . Repeat ( __ . Out ( ) ) . Times ( 2 ) } } ,
502502 { "g_withStrategiesXReservedKeysVerificationStrategyXthrowException_trueXX_addVXpersonX_propertyXid_123X_propertyXname_markoX" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithStrategies ( new ReservedKeysVerificationStrategy ( throwException : true ) ) . AddV ( "person" ) . Property ( "id" , 123 ) . Property ( "name" , "marko" ) } } ,
503503 { "g_withStrategiesXReservedKeysVerificationStrategyXthrowException_trueXX_addVXpersonX_propertyXage_29X_propertyXname_markoX" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithStrategies ( new ReservedKeysVerificationStrategy ( throwException : true , keys : new HashSet < string > { "age" } ) ) . AddV ( "person" ) . Property ( "age" , 29 ) . Property ( "name" , "marko" ) } } ,
504- { "g_withoutStrategiesXReservedKeysVerificationStrategyX_addVXpersonX_propertyXid_123X_propertyXname_markoX" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithoutStrategies ( typeof ( ReservedKeysVerificationStrategy ) ) . AddV ( "person" ) . Property ( "id" , 123 ) . Property ( "name" , "marko" ) } } ,
504+ { "g_withoutStrategiesXReservedKeysVerificationStrategyX_addVXpersonX_propertyXid_123X_propertyXname_markoX" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithoutStrategies ( typeof ( ReservedKeysVerificationStrategy ) ) . AddV ( "person" ) . Property ( "id" , 123 ) . Property ( "name" , "marko" ) . Values < object > ( ) } } ,
505505 { "g_withStrategiesXSeedStrategyX_V" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithStrategies ( new SeedStrategy ( seed : 7 ) ) . V ( ) . Coin ( 0.5 ) } } ,
506506 { "g_withoutStrategiesXSeedStrategyX_V" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithoutStrategies ( typeof ( SeedStrategy ) ) . V ( ) } } ,
507507 { "g_withStrategiesXStandardVerificationStrategyX_V" , new List < Func < GraphTraversalSource , IDictionary < string , object > , ITraversal > > { ( g , p ) => g . WithStrategies ( new StandardVerificationStrategy ( ) ) . V ( ) } } ,
0 commit comments