Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8250545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:55:46+00:00 2026-06-07T23:55:46+00:00

I would like to Mock the System.IO.FileInfo.Extension Method and have it return .xls but

  • 0

I would like to Mock the System.IO.FileInfo.Extension Method and have it return “.xls” but I can’t get anything to work

This Example works great for Delete but not for Extension (The code will not compile)

  [ClassInitialize]
      public static void Initialize(TestContext context)
      {
         Mock.Partial<FileInfo>().For((x) => x.Extension);
      }

I Have also tried using this example but the code is wrong.

  • I have a fully licensed copy of JustMock
  • I am using VS 2010 .net 4.0

Edit:
I know I can setup a interface and test that way, but the paid version JustMock is supposed to mock concrete classes. Since I paid for it, I would like to know how to do it that way.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T23:55:47+00:00Added an answer on June 7, 2026 at 11:55 pm

    With the latest release of JustMock (Q2 2012). You no longer need the MockClassAtriibute for mocking MsCrolib members.

    You can write above test very much in the following way:

    [TestClass]
    public class UnitTest1
    {
            [ClassInitialize]
            public static void Init(TestContext context)
            {
                Mock.Replace<FileInfo, string>(x=> x.Extension).In<UnitTest1>();
            }
    
    
           [TestMethod]
           public void ShouldAssertFileInfoExtension()
           {
               var fileInfo = Mock.Create<FileInfo>(Constructor.Mocked);
    
               string expected = "test";
    
               Mock.Arrange(() => fileInfo.Extension).Returns(expected);
    
               Assert.AreEqual(fileInfo.Extension, expected);
           }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class method which I would like to mock and return one
I would like to have a JUnit (or other) system where the enterprise beans
I have a lot of code and would like to avoid posting it all
There are already quite some posts about the Singleton-Pattern around, but I would like
I would like an EasyMock mock to be able to expect an empty list
I would like to unit test an Add method in a repository that returns
I would like to unit test the Initialize method of a Controller object. The
Possible Duplicate: .NET file system wrapper library I would like to write a test
How to mock methods with void return type? I implemented an observer pattern but
In my C# XML Comment's <return> comment, I would like the output (I'm using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.