Telerik Telerik
The Telerik Blogs
  • New Mocking Capabilities in JustMock Q3 2011 SP

    Friday, February 03, 2012 by Just* Team | Comments 0

    Telerik JustMock received many new features in the service pack for the Q3 2011 release, enhancing the mocking framework’s impressive ability to mock almost everything. Let’s take a look at a few highlights of JustMock Q3 2011 SP.

    Mock Inside a Threadpool

    Mock objects can be accessed inside of another thread and work as expected.

    var  mockable =  Mock.Create<Mockable>();
    Mock.Arrange(() => mockable.IsMocked).Returns(true);
    
    bool  mocked =  false;
    
    var  latch =  new  WaitLatch();
    
    ThreadPool.QueueUserWorkItem(cookie =>
    {
         try
         {
            mocked = mockable.IsMocked;
        }
         finally
         {
            latch.Signal();
        }
    });
    
    latch.Wait();
    
    Assert.IsTrue(mocked);

    The callback for ThreadPool.QueueUserWorkItem accesses ...

  • Naming Conventions in JustCode

    Thursday, February 02, 2012 by Just* Team | Comments 1

    Choosing appropriate identifiers for the constructs in your code provides better readability and maintainability. With the latest build of Telerik JustCode you can now easily set naming conventions for all your code elements.

    Configuration and Supported languages

    These rules can be set for C# and VB.NET and are part of the Code Style section of the JustCode options dialog:

    These options are part of the shared settings so you can share them per solution as well.

    Naming Rules

    There are seven types of rules that a user can choose from:

    • camelCase
    • PascalCase
    • UPPER_UNDERSCORE
    • lower_underscore
    • Sentence_underscore
    • PascalCase_Underscore
    • camelCase_Underscore

    You can also ...

  • What’s New In The Latest JustCode Internal Build

    Tuesday, January 24, 2012 by Just* Team | Comments 0

    In preparing for the upcoming major release of Telerik JustCode we published our first internal build for this year. Besides focusing on performance and memory footprint improvements we’ve listened to the users’ voice and implemented some of the features you’ve asked us for.

    New In Test Runner

    We continued to improve our support for MbUnit and NUnit testing frameworks. Now we support the NUnit TheoryAttribute, and for MbUnit you will find support for:

    Added New Filters In ToDo Navigator

    After user’s request we added two more useful filters to the “Filter by” menu in ...

  • Search in JustDecompile

    Friday, January 13, 2012 by Just* Team | Comments 0

    There are many reasons why you would want to decompile an assembly with Telerik JustDecompile. Perhaps you’re curious about the inner workings of a particular reference, or maybe you’re looking for interesting techniques. But when you’re trying to solve an issue, you need to be able to quickly find what’s going wrong. Clues can range from a particular method call to an exception message, and a more robust method of searching was requested on the JustDecompile User Voice. We have answered the request in the latest version of JustDecompile.

    The Search Window

    The new search window is accessible ...

  • JustCode formatter – Introduction

    Tuesday, January 10, 2012 by Just* Team | Comments 0

    The formatter in Telerik JustCode is one of its many great features. Its main goal is to let you define and enforce your code style across your projects. It is a very important part of the product as it is used in many other places as well (for example typing assistance and refactorings).

    Configuration

    The JustCode formatter is very configurable. You can find its options in the Code Style section of the JustCode options dialog:

    You can also configure JustCode to share the Code Style options per solution. To do that, go to the Options Sharing page in the ...

  • New Refactorings in JustCode Q3 2011

    Thursday, January 05, 2012 by Just* Team | Comments 0

    With each new release Telerik JustCode continues to expand in all directions. Following our previous refactorings post, here we’ll show you some new conversions added to the refactorings area for JustCode 2011’s Q3 release.

    Anonymous, Lambda And Named Method Conversions

    Now you can easily alter between those three ways of defining and using a method. Select the method and then choose from the refactorings menu "To Anonymous", "To Lambda" or "To Named Method" (refactorings context menu is shown with the shortcut Alt+Insert or from the VisualAid’s R menu):

     

    Convert Interface To Abstract ...

  • What’s New And Improved In JustCode Q3 2011 SP1

    Friday, December 23, 2011 by Just* Team | Comments 0

    Hot on the heels of the eagerly anticipated 2011 Q3 release of Telerik JustCode we publish its Service Pack. Our main goal was to improve performance and memory consumption but without forgetting about adding new functionalities and fixing the pending issues, as for example improving the existing code templates. If you want to be up to date with all that is added to JustCode, please visit our What’s New page.

    Test Runner

    With this release we introduce support for NUnit data driven tests. Now you can enhance your unit tests by using these attributes:

  • Live Data and Source Code in JustTrace

    Tuesday, December 20, 2011 by Just* Team | Comments 0

    Although it was only a month ago when JustTrace Q3 2011 was released, we've launched JustTrace Q3 2011 SP1 with two new major features: a completely redone “Live Data” view and the ability to view source code. In addition, a number of enhancements have been made, resulting in a smoother user experience. Visit the What’s New page for a list of all changes.

    Live Data View

    The Live Data view has been updated to provide visual information via charts representing CPU and memory usage. This enables you to visualize how the profiled application process is currently affecting performance and memory ...

  • What’s New in JustDecompile Beta 3

    Wednesday, December 07, 2011 by Just* Team | Comments 0

    We release updates to JustDecompile on a regular basis to provide you with the highest quality, decompiled code, but we recently arrived at a milestone with JustDecompile Beta 3. We’re going to take a look at two highly requested features of JustDecompile that were recently added. Remember, you can always make your voice heard at the Telerik JustDecompile User Voice, and perhaps you will find your request featured in our next milestone.

    Zip File Distribution

    Telerik JustDecompile can now be downloaded as a zip file. You can put the files on a USB drive for easy access without ...

  • What’s New in JustTrace Q3 2011

    Wednesday, November 23, 2011 by Just* Team | Comments 0

    JustTrace is perhaps the friendliest profiler on the market, but you will find that JustTrace Q3 2011 is even further enhanced with polish and enhancements to the user experience to make this a must-have tool for better code. If you’re interested in the detailed improvements we’ve made to JustTrace this release, please take a look at the version notes. This article will focus on two new features: Compare Snapshots for Memory Profiler and Call Tree Navigation.

    Compare Snapshots

    Previous editions of JustTrace had the Compare Snapshots feature but were restricted to performance snapshots. This has now been expanded ...

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. »