Best NBi code snippet using NBi.Core.Transformation.Transformer.Native.Text.TextToLastChars.TextToPadLeft
TextTest.cs
Source:TextTest.cs  
...361        [TestCase("1234", 9, '*', "*****1234")]362        [TestCase("123456789", 3, '0', "123456789")]363        [TestCase("(null)", 3, '0', "000")]364        [TestCase("(empty)", 3, '0', "000")]365        public void Execute_TextToPadLeft_Valid(string value, int length, char character, string expected)366        {367            var function = new TextToPadLeft(new LiteralScalarResolver<int>(length), new LiteralScalarResolver<char>(character));368            var result = function.Evaluate(value);369            Assert.That(result, Is.EqualTo(expected));370        }371        [Test]372        [TestCase("20190317111223", "yyyyMMddhhmmss", "2019-03-17 11:12:23")]373        [TestCase("2019-03-17 11:12:23", "yyyy-MM-dd hh:mm:ss", "2019-03-17 11:12:23")]374        [TestCase("17-03-2019 11:12:23", "dd-MM-yyyy hh:mm:ss", "2019-03-17 11:12:23")]375        [TestCase("2019-03-17T11:12:23", "yyyy-MM-ddThh:mm:ss", "2019-03-17 11:12:23")]376        [TestCase("17/03/2019 11:12:23", "dd/MM/yyyy hh:mm:ss", "2019-03-17 11:12:23")]377        [TestCase("17.03.2019 11.12.23", "dd.MM.yyyy hh.mm.ss", "2019-03-17 11:12:23")]378        [TestCase("Wed, 25.09.19", "ddd, dd.MM.yy", "2019-09-25")]379        [TestCase("Wednesday 25-SEP-19", "dddd dd-MMM-yy", "2019-09-25")]380        [TestCase("2019-10-01T19:58Z", "yyyy-MM-ddTHH:mmZ", "2019-10-01 19:58:00")]381        public void Execute_TextToDateTime_Valid(string value, string format, DateTime expected)...TextTransformations.cs
Source:TextTransformations.cs  
...132            : base(length, character) { }133        protected override object EvaluateString(string value)134            => value.Length >= Length.Execute() ? value : value.PadRight(Length.Execute(), Character.Execute());135    }136    class TextToPadLeft : AbstractTextPadTransformation137    {138        public TextToPadLeft(IScalarResolver<int> length, IScalarResolver<char> character)139            : base(length, character) { }140        protected override object EvaluateString(string value)141            => value.Length >= Length.Execute() ? value : value.PadLeft(Length.Execute(), Character.Execute());142    }143    class BlankToEmpty : AbstractTextTransformation144    {145        protected override object EvaluateBlank() => "(empty)";146        protected override object EvaluateString(string value) => value;147    }148    class BlankToNull : AbstractTextTransformation149    {150        protected override object EvaluateBlank() => "(null)";151        protected override object EvaluateEmpty() => "(null)";152        protected override object EvaluateString(string value) => value;...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
