Skip to content

ConsoleLogging の出力を視覚的に解り易いグラフにしたい #18

Closed
@in-async

Description

@in-async

現在:

{
      path: ./AccountId:Int32
    target: System.Int32
    actual: 123
  expected: 123
}
{
      path: ./Name:String
    target: System.String
    actual: John Smith
  expected: John Smith
}
{
      path: ./CreatedAt:DateTime
    target: System.DateTime
    actual: 2020/03/09 8:15:00
  expected: 2020/03/09 8:15:00
}
{
      path: ./Tags:IReadOnlyCollection`1/0:String
    target: System.String
    actual: Foo
  expected: Foo
}
{
      path: ./Tags:IReadOnlyCollection`1/1:String
    target: System.String
    actual: Bar
  expected: Bar
}

理想イメージ:

{
  Account: Int32 = (
      actual: 123
    expected: 123
  )
  Name: String = (
      actual: "John Smith"
    expected: "John Smith"
  )
  CreatedAt: DateTime = (
      actual: "2020/03/09 8:15:00"
    expected: "2020/03/09 8:15:00"
  )
  Tags: IReadOnlyCollection`1 {
    0: String = (
        actual: "Foo"
      expected: "Foo"
    )
    1: String = (
        actual: "Bar"
      expected: "Bar"
    )
  }
}

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions