{
  "slug": "case-conversion-names-acronyms-test",
  "generatedAt": "2026-08-27T21:08:43.069Z",
  "coreSource": "assets/js/tools-src/core.js",
  "fixtureCount": 16,
  "results": [
    {
      "id": "case-sentence-01",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "hello WORLD",
      "output": "Hello world",
      "steps": [
        {
          "op": "toSentenceCase"
        }
      ],
      "lineCount": 1,
      "charCount": 11
    },
    {
      "id": "case-title-02",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "the art of the deal",
      "output": "The Art Of The Deal",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 19
    },
    {
      "id": "case-acronym-03",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "NASA launch update",
      "output": "Nasa Launch Update",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 18
    },
    {
      "id": "case-brand-04",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "iPhone release notes",
      "output": "Iphone Release Notes",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 20
    },
    {
      "id": "case-surname-05",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "mcdonald and o’neil",
      "output": "Mcdonald And O’Neil",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 19
    },
    {
      "id": "case-apostrophe-06",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "it's a writer's tool",
      "output": "It's A Writer's Tool",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 20
    },
    {
      "id": "case-hyphen-07",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "state-of-the-art design",
      "output": "State-Of-The-Art Design",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 23
    },
    {
      "id": "case-punct-08",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "wait. WHAT? now… go!",
      "output": "Wait. What? Now… Go!",
      "steps": [
        {
          "op": "toSentenceCase"
        }
      ],
      "lineCount": 1,
      "charCount": 20
    },
    {
      "id": "case-camel-09",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "customer account id",
      "output": "customerAccountId",
      "steps": [
        {
          "op": "toCamelCase"
        }
      ],
      "lineCount": 1,
      "charCount": 17
    },
    {
      "id": "case-pascal-10",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "customer account id",
      "output": "CustomerAccountId",
      "steps": [
        {
          "op": "toPascalCase"
        }
      ],
      "lineCount": 1,
      "charCount": 17
    },
    {
      "id": "case-snake-11",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "Customer Account ID",
      "output": "customer_account_id",
      "steps": [
        {
          "op": "toSnakeCase"
        }
      ],
      "lineCount": 1,
      "charCount": 19
    },
    {
      "id": "case-kebab-12",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "Customer Account ID",
      "output": "customer-account-id",
      "steps": [
        {
          "op": "toKebabCase"
        }
      ],
      "lineCount": 1,
      "charCount": 19
    },
    {
      "id": "case-numbers-13",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "iso 9001 audit notes",
      "output": "Iso 9001 Audit Notes",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 20
    },
    {
      "id": "case-cyrillic-14",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "привет мир",
      "output": "Привет Мир",
      "steps": [
        {
          "op": "toTitleCase"
        }
      ],
      "lineCount": 1,
      "charCount": 10
    },
    {
      "id": "case-ws-15",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "  multi   space\tpath  ",
      "output": "multiSpacePath",
      "steps": [
        {
          "op": "toCamelCase"
        }
      ],
      "lineCount": 1,
      "charCount": 14
    },
    {
      "id": "case-upper-16",
      "kind": "pipeline",
      "generated": true,
      "status": "pass",
      "input": "Already Mixed",
      "output": "ALREADY MIXED",
      "steps": [
        {
          "op": "toUppercase"
        }
      ],
      "lineCount": 1,
      "charCount": 13
    }
  ]
}
