Telerik blogs

Latest

  • Productivity

    JustCode – Color Identifiers in Depth

    Last time we looked at the basics of JustCode color identifiers. In this blog I will go a bit more in-depth about each of the available markers. There are quite a few, and we will be adding more as we mature JustCode.    What Do All of Those Markers DO? There are many markers listed in the “Display Item” list view, and you might not immediately know what some of these affect in the UI. That is why I have come up with this “cheat sheet” explaining each setting. Note: This code snippet contains at least one of every item JustCode colorizes. I turned off...
    May 27, 2021 4 min read
  • Productivity Testing

    Test List Management in WebUI Test Studio 2010 QA Edition

    The new standalone WebUI Test Studio 2010 (its official launch was announced in my previous post) includes a couple of built from scratch modules which we’ll describe in this blog. I’ll start with the important features of the Test Lists in the QA Edition. Record and execute a single test Recording and execution of a single test case is pretty straight forward thanks to a cool hint on the startup screen:   With the QA edition you can quickly create a new project, add a test in the project and launch the recorder for your first test. You can ...
    May 27, 2021 4 min read
  • Productivity

    JustCode – Color Identifier Basics

    Color identifiers make it easier for developers to quickly read and understand the code on screen.  One of the many features provided by JustCode is the ability to colorize additional items that Visual Studio does not allow you to colorize by default.  The colorization of items such as methods, properties, events, variables, and method parameters can easily be tweaked to your specific needs. Enable / Disable Color Identifiers In the recent release, we turned this option on by default.  You can enable/disable code colorization by going to the JustCode menu in Visual Studio, selecting options, then selecting the general section in...
    May 27, 2021 1 min read
  • Productivity

    Working with multiple interfaces on a single mock.

    Today , I will cover a very simple topic, which can be useful in cases we want to mock different interfaces on our expected mock object.  Our target interface is simple and it looks like:   public interface IFoo : IDisposable {     void Do(); } Our target interface has an IDisposable implemented. Now, generally if we implement it in a class , we have to implement the whole of it [which is quite logical] and that should not wait for any extra calls or constructs. Considering that, when we are creating our target mock it should also implement all the dependent interfaces for us as well.   Therefore,  as we are creating...
    May 27, 2021 1 min read
  • Productivity

    Validating Your Domain Model

    With the Q1 Release of the Telerik OpenAccess ORM we introduced the new Visual Designer for OpenAccess. In a nutshell it’s a drag-and-drop editor that visualizes the mapped classes and their relationships. It is a great improvement and people are often stunned by it. One of the coolest features that it presents though is often overlooked. OpenAccess gives you the possibility of validating your model. Note that this is extremely helpful due to the fact that you are able to build your solution with an invalid model and then get errors in the runtime. On top of that it also suggests...
    May 27, 2021 2 min read