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 8438175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:38:13+00:00 2026-06-10T07:38:13+00:00

When I try to use approvals with my unit test decorated with [Theory] attribute

  • 0

When I try to use approvals with my unit test decorated with [Theory] attribute it says:

System.Exception: System.Exception : Approvals is not set up to use your test framework.
It currently supports [NUnit, MsTest, MbUnit, xUnit.net]
To add one use ApprovalTests.StackTraceParsers.StackTraceParser.AddParser() method to add implementation of ApprovalTests.StackTraceParsers.IStackTraceParser with support for your testing framework.
To learn how to implement one see http://blog.approvaltests.com/2012/01/creating-namers.html
   at ApprovalTests.StackTraceParsers.StackTraceParser.Parse(StackTrace stackTrace)
   at ApprovalTests.Namers.UnitTestFrameworkNamer..ctor()
   at ApprovalTests.Approvals.GetDefaultNamer()
   at ApprovalTests.Approvals.Verify(IApprovalWriter writer)
   at ApprovalTests.Approvals.Verify(Object text)

Seems like it recognizes [Fact] attributes only. I tried to follow the link from stacktrace but there is nothing about how to plug in your own namer/parser into approvals.

Is there any entry point where I can add my own namer/parser? Itself it seems to be trivial, the only question is how to use it:

 public class TheoryNamer : AttributeStackTraceParser
    {
        protected override string GetAttributeType()
        {
            return typeof(TheoryAttribute).FullName;
        }

        public override string ForTestingFramework
        {
            get { return "xUnit Extensions"; }
        }
    }
  • 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-10T07:38:14+00:00Added an answer on June 10, 2026 at 7:38 am

    There are a couple parts to this answer & question.

    1. How to add
    2. The Namer
    3. Dealing with data driven tests in approvaltests

    1) How to add

    Adding is simple (if a bit rough)
    The method mentioned should have been static, but it works none the less.

    To add one use
    ApprovalTests.StackTraceParsers.StackTraceParser.AddParser() method to
    add implementation of
    ApprovalTests.StackTraceParsers.IStackTraceParser with support for
    your testing framework.

    so you’ll need to do a

    new StackTraceParser().AddParser(new TheoryNamer());
    

    I apologize for this, and it will be static in the next version (v.21)

    2) The Namer

    The Namer is suppose to generate a unique name for each approved/received file. This is normally done on the name of the method, however the name here will not be unique as a theory based test will be data driven and therefore have multiple calls to the same method.

    Naming:  classname.methodname(optional: .additionalInformation).received.extension
    

    As such, you will probably have to include additional information in the method it’s self

    public class StringTests1
    {
        [Theory,
        InlineData("goodnight moon"),
        InlineData("hello world")]
        public void Contains(string input)
        {
            NamerFactory.AdditionalInformation = input;  // <- important
            Approvals.Verify(transform(input));
        }
    } 
    

    3) Dealing with data driven tests in approvaltests

    To be honest, in most cases, the data driven method of approach in Approval Tests isn’t thru parameters in the Method Decorators. It is usually thru the VerifyAll with a lambda transform. For Example the above might look like

    [Fact]
    public void UpperCase()
    {
        var inputs = new[]{"goodnight moon","hello world"};
        Approvals.VerifyAll(inputs, i => "{0} => {1}".FormatWith(i, i.ToUpperInvariant()));
    }
    

    Which would create the received file:

    goodnight moon => GOODNIGHT MOON
    hello world => HELLO WORLD
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i try to use TBXML and getting this error TBXML class method +tbXMLWithURL not
i try to use jquery .text() but not really work : Before <a id=group_name
When i try use a webservice i get the following exception. My main question
I try use gssapi32.dll in my application but I receive exception when app start
I try use string as a regular expression pattern but I've following errors PHP
I try use a integer array in java with the code below: public static
I try to use a variable in my kshell script but can't get a
I try to use the great particle emitter which Michael Daley build for his
I try to use SQL SERVER VIEW within RIA Services. So I created some
I try to use this: xml2struct when I use this xml: <XMLname attrib1=Some value>

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.