{"id":37566787,"url":"https://github.com/exceedsystem/vscode-pict","last_synced_at":"2026-01-16T09:17:46.925Z","repository":{"id":203735013,"uuid":"708349052","full_name":"exceedsystem/vscode-pict","owner":"exceedsystem","description":"Using pict with vscode","archived":false,"fork":false,"pushed_at":"2025-12-29T04:37:06.000Z","size":313,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-01T00:50:47.794Z","etag":null,"topics":["combination-test","pairwise","pairwise-testing","testing","testing-tool","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/exceedsystem.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-22T09:49:02.000Z","updated_at":"2025-12-29T04:37:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"6608abce-779f-47b4-84e6-9971b7f9343f","html_url":"https://github.com/exceedsystem/vscode-pict","commit_stats":null,"previous_names":["exceedsystem/vscode-pict"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/exceedsystem/vscode-pict","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exceedsystem%2Fvscode-pict","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exceedsystem%2Fvscode-pict/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exceedsystem%2Fvscode-pict/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exceedsystem%2Fvscode-pict/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exceedsystem","download_url":"https://codeload.github.com/exceedsystem/vscode-pict/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exceedsystem%2Fvscode-pict/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["combination-test","pairwise","pairwise-testing","testing","testing-tool","vscode","vscode-extension"],"created_at":"2026-01-16T09:17:46.825Z","updated_at":"2026-01-16T09:17:46.908Z","avatar_url":"https://github.com/exceedsystem.png","language":"TypeScript","readme":"# VSCode PICT\n\nThis extension generates pairwise test patterns using Microsoft PICT.\n\n**Limitations:**\n\nCurrently, it works only on Microsoft Windows(x64), but we hope to support Mac and Linux in the future.\n\n## How to use?\n\n1. Open a new text editor and create a PICT model file as follows.\n\n   ```\n   #\n   # This is a sample model for testing volume creation\n   #\n\n   Type:          Primary, Logical, Single, Span, Stripe, Mirror, RAID-5\n   Size:          10, 100, 500, 1000, 5000, 10000, 40000\n   Format method: quick, slow\n   File system:   FAT, FAT32, NTFS\n   Cluster size:  512, 1024, 2048, 4096, 8192, 16384, 32768, 65536\n   Compression:   on, off\n   ```\n\n2. If you would like to specify a parameter arguments for PICT, specify it as is in the header comment section `# Options`.\n\n   ```\n   #\n   # This is a sample model for testing volume creation\n   #\n   # Options /o:2 /d:, /a:| /n:~ /r:1 /c\n\n   Type:          Primary, Logical, Single, Span, Stripe, Mirror, RAID-5\n   Size:          10, 100, 500, 1000, 5000, 10000, 40000\n   Format method: quick, slow\n   File system:   FAT, FAT32, NTFS\n   Cluster size:  512, 1024, 2048, 4096, 8192, 16384, 32768, 65536\n   Compression:   on, off\n   ```\n\n   The following parameters can be used.\n\n   ```\n   Usage: pict model [options]\n\n   Options:\n     /o:N|max - Order of combinations (default: 2)\n     /d:C     - Separator for values  (default: ,)\n     /a:C     - Separator for aliases (default: |)\n     /n:C     - Negative value prefix (default: ~)\n     /e:file  - File with seeding rows\n     /r[:N]   - Randomize generation, N - seed\n     /c       - Case-sensitive model evaluation\n     /s       - Show model statistics\n   ```\n\n3. Save the created model file with a name of your choice, such as 'testcase_001.txt'.\n4. Please Open command palette and run `Run PICT` command.\n\n   ![image](https://github.com/exceedsystem/vscode-pict/assets/70489172/24ca53ba-5e8e-45fb-b60d-c3dc443350f2)\n\n5. After PICT is run, the generated test cases will be displayed in a new editor tab.\n\n   ![image](https://github.com/exceedsystem/vscode-pict/assets/70489172/a78a3987-6fec-46ad-a4b5-c6b2e0434b45)\n\n## Additional information\n\n**Bundled PICT executable file**\n\nhttps://github.com/microsoft/pict/releases/download/v3.7.4/pict.exe\n\n**SHA1**\n2f3145acec23240c10e9f476c8ca77846d9c458f\n\n**VirusTotal scan result**\nhttps://www.virustotal.com/gui/file/80aba862739cf18b4faa13d408163324d188a1c4efccdd977d9c5ba3f8950bbd\n\n## References\n\n**microsoft/pict**\n\nhttps://github.com/microsoft/pict\n\n**Learn how to write test case for PICT**\n\nhttps://github.com/Microsoft/pict/blob/main/doc/pict.md\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexceedsystem%2Fvscode-pict","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexceedsystem%2Fvscode-pict","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexceedsystem%2Fvscode-pict/lists"}