この度、JSONMatcherというSwift向けのテストライブラリを開発しました。 github.com これは何? SwiftでJSONのオブジェクトや文字列を検査するマッチャーです。 JSONオブジェクトのテストがこんな感じで簡単に書けます。 import XCTest import Nimble import JSONMatcher class ExampleTestCase: XCTestCase { func testComplexExample() { expect([ "name" : "Snorlax", "no" : 143, "species" : "Sleeping", "type" : ["normal"], "stats" : [ "hp" : 160, "attack" : 110, "defense" : 65, "special_attack" : 65,