MuscleAssert 1.0.0

MuscleAssert 1.0.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Apr 2020

Maintained by akuraru.



  • By
  • akuraru

MuscleAssert Build Status codecov

A unit test framework for Objective-C using computation expressions.

Proposal

What is MuscleAssert

  • provide an assertion message that makes the difference more obvious.
  • is not "where is it going?" But "What's different?"

Related Link

Description

Installation

CocoaPods

  1. pod 'MuscleAssert'

Usage

NSArray *left = @{
    @"user": @{
        @"name" : @"akuraru",
    }
};
NSArray *right = @{
    @"user": @{
        @"name" : @"",
    }
};

Result

path: .user.name.0
left: akuraru
right: 

Contributing

pull-requests, issue reports and patches are always welcomed.

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT