{"id":20742410,"url":"https://github.com/hrosicka/robot-framework-examples","last_synced_at":"2026-04-10T23:09:25.966Z","repository":{"id":210271694,"uuid":"726116147","full_name":"hrosicka/robot-framework-examples","owner":"hrosicka","description":"🤖 Robot Framework meets Python! A collection of automated tests for math, squares, and quadratic equations—because calculators need friends too.","archived":false,"fork":false,"pushed_at":"2025-06-02T09:27:56.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-28T09:55:31.996Z","etag":null,"topics":["python","robotframework","test","test-automation","testing"],"latest_commit_sha":null,"homepage":"","language":"RobotFramework","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/hrosicka.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2023-12-01T15:10:23.000Z","updated_at":"2025-06-02T09:29:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"53c2b4cb-c7ce-4ae1-beab-6ceaf107c5ae","html_url":"https://github.com/hrosicka/robot-framework-examples","commit_stats":null,"previous_names":["hrosicka/robot-framework-examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hrosicka/robot-framework-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrosicka%2Frobot-framework-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrosicka%2Frobot-framework-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrosicka%2Frobot-framework-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrosicka%2Frobot-framework-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hrosicka","download_url":"https://codeload.github.com/hrosicka/robot-framework-examples/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrosicka%2Frobot-framework-examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279016583,"owners_count":26085850,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["python","robotframework","test","test-automation","testing"],"created_at":"2024-11-17T07:05:35.858Z","updated_at":"2026-04-10T23:09:25.954Z","avatar_url":"https://github.com/hrosicka.png","language":"RobotFramework","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Robot Framework Examples\n\n![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)\n![Python](https://img.shields.io/badge/Python-3.7%2B-blue)\n![Robot Framework](https://img.shields.io/badge/Robot_Framework-Any-green)\n![Tests](https://img.shields.io/badge/Automated%20Tests-Yes-brightgreen)\n![Made with Love](https://img.shields.io/badge/Made%20with-%E2%9D%A4-red)\n![Stars](https://img.shields.io/github/stars/hrosicka/robot-framework-examples)\n![Last Commit](https://img.shields.io/github/last-commit/hrosicka/robot-framework-examples)\n\n**A sample repository containing Robot Framework tests for Python classes.**  \nThis repository serves as an example of automated testing for basic mathematical operations, solving quadratic equations, and working with square geometry.\n\n---\n\n## 📁 Repository Structure\n\n| File                           | Description                                            |\n|--------------------------------|--------------------------------------------------------|\n| `BasicTestCalculator.robot`    | Tests the `Calculator.py` class (➕ ➖ ✖️ ➗) |\n| `BasicTestSquare.robot`        | Tests the `Square.py` class (perimeter, area ⬜️)      |\n| `BasicTestQuadraticEquation.robot` | Tests the `QuadraticEquation.py` class (discriminant, roots 𝑥²) |\n| `Calculator.py`                | Basic calculator implementation                        |\n| `Square.py`                    | Square geometry implementation                         |\n| `QuadraticEquation.py`         | Quadratic equation solver implementation               |\n| `LICENSE`                      | MIT License                                           |\n\n---\n\n## ⚙️ Requirements\n\n- Python 3.7+\n- [Robot Framework](https://robotframework.org/) (installable via pip)\n- (Recommended) Virtual environment (e.g., using `venv`)\n\n### Installing Robot Framework:\n```bash\npip install robotframework\n```\n\n---\n\n## ▶️ How to Run the Tests\n\n1. Make sure you have Python and Robot Framework installed.\n2. Run the test files using the following commands:\n\n```bash\nrobot BasicTestCalculator.robot\nrobot BasicTestSquare.robot\nrobot BasicTestQuadraticEquation.robot\n```\n\nThe results will be available in the `log.html` and `report.html` files generated after running the tests.\n\n---\n\n## 🧪 Description of Tests and Classes\n\n### Calculator.py \u0026 BasicTestCalculator.robot\n- **My Sum, My Difference, My Product, My Quotient** – Basic arithmetic operations, each function tested with several number combinations.\n\n### Square.py \u0026 BasicTestSquare.robot\n- **Perimeter, Area** – Calculation of the perimeter and area of a square, both input and output in centimeters.\n\n### QuadraticEquation.py \u0026 BasicTestQuadraticEquation.robot\n- **Discriminant, Roots** – Calculation of the discriminant and solving quadratic equations, including complex roots.\n  \n---\n\n## 👩‍💻 Author\nLovingly crafted by [Hanka Robovska](https://github.com/hrosicka) 👩‍🔬\n\n---\n\n## 📝 License\nMIT – Free to use, modify, and distribute as needed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrosicka%2Frobot-framework-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhrosicka%2Frobot-framework-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrosicka%2Frobot-framework-examples/lists"}