Posts

Difference between NUnit and Xunit & which one is better...?

Difference between NUnit and XUnit & which one is better...?  Features of nUnit -  Is around from 2002 and its widely used by .Net community Well documented Isolation level during execution is per test class NUnit runs all of the tests in the same Class using the same class instance. A new instance of the test class is created and then runs all of the tests method from the same class instance There are TestFixture [Setup] and [Teardown] attributes. Ability to include parameters in your tests Less extensible Less TDD Adherent. One can share fields or properties. Features of xUnit -  Modern and trending in .Net Community  Sufficient documentation is available. Isolation level during execution is per test method. XUnit starts a new instance of the test class for very each of the test methods which improves test isolation. As test methods run in separate test class instances in isolation, it also increases the level of parallelism. There are no [Setup] and [Teardown]...

Angular Interview Questions for Freshers and Experienced Developers

Full Stack Developer Interview Questions - For C#, .Net, .Net Core, Interview Questions, Click here...! Angular interview questions for fresher and experienced developer 1.  Difference between Angular 2, 6, 7, 8, 9, 10 Angular 2 : Introduction of the complete rewrite with TypeScript, faster change detection, and dependency injection. Angular 6 : Addition of Angular Elements, Service Worker, CLI prompts, Tree Shakable Providers. Angular 7 : Improved CLI, virtual scrolling, drag and drop. Angular 8 : Differential loading for better performance, support for dynamic imports, and Ivy preview. Angular 9 : Ivy becomes the default compiler, improved testing and smaller bundles. Angular 10 : Smaller updates, strict mode, TypeScript 3.9 support, and better error messages. 2.  Subjects in RxJS Subject : Multicast Observable, allows multiple subscribers. BehaviorSubject : Has a default value, and subscribers get the latest emitted value. ReplaySubject : Replays the last few emissions to n...

Border Radius not working in Outlook Email template

Hi techies, We can have the different ways to search it on google or stack overflow that border radius not working in outlook CSS , how to make image as round or roundrect, oval, circle in outlook,  how to put border radius to image  in outlook email template,  etc. I assure you that at the end of this tech blog you can able to find all the answers related to the Outlook email template and its CSS behavior. Lets get started... Just a little brief that why the border radius is not working in the outlook email template Outlook still support the Vector markup language (VML)  when it comes to support the email template CSS which doesn't support most of the CSS3 or HTML5 features that most of the web browsers do. As Border-radius is a feature of CSS3 so its not is not supported by Microsoft outlook. It means to meet your requirement you have to take reference from VML. Actually, I made it easier for you. Below is the code snippet that will work to solve the problem. Code ...