Sha256: f0b761d7b3c503b62f71a72554b38ece39bd4a4f49e8024639dfe0105ace9952
Contents?: true
Size: 607 Bytes
Versions: 78
Compression:
Stored size: 607 Bytes
Contents
using Generators.Data; using Generators.Methods; namespace Generators.Exercises { public class AtbashCipherExercise : EqualityExercise { public AtbashCipherExercise() : base("atbash-cipher") { } protected override TestMethodOptions CreateTestMethodOptions(CanonicalData canonicalData, CanonicalDataCase canonicalDataCase, int index) { var testMethodOptions = base.CreateTestMethodOptions(canonicalData, canonicalDataCase, index); testMethodOptions.InputProperty = "phrase"; return testMethodOptions; } } }
Version data entries
78 entries across 78 versions & 1 rubygems