Skip to content

JonathanTech/AutoMoq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoMoqer is an "auto-mocking" container that automatically creates any fake objects that are necessary to instantiate the class under test. You can access those fakes through the mocker, or you can just ignore them if they're not important.

I wrote it for a few reason:

1.)  I was tired of having of my tests breaking the build whenever I added or removed a dependency to a class.
2.)  I was tired of managing instances of fakes in my unit tests, especially when they weren't relevant to test I was running.

Example code:


   var mocker = new AutoMoqer();

   mocker.GetMock<IDataDependency>()
      .Setup(x => x.GetData())
      .Returns("TEST DATA");

   var classToTest = mocker.Resolve<ClassToTest>();

   classToTest.DoSomething();

   mocker.GetMock<IDependencyToCheck>()
      .Setup(x=>x.CallMe("TEST"), Times.Once());
   

CallMe("TEST"), Times.Once());
   

About

Auto mocking provider for Moq.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 94.3%
  • Ruby 4.6%
  • Classic ASP 1.1%