{"id":13777033,"url":"https://github.com/manuel-mauky/assertj-javafx","last_synced_at":"2025-09-08T23:32:42.362Z","repository":{"id":16033600,"uuid":"18777396","full_name":"manuel-mauky/assertj-javafx","owner":"manuel-mauky","description":"AssertJ assertions for JavaFX","archived":false,"fork":false,"pushed_at":"2015-05-16T18:31:49.000Z","size":744,"stargazers_count":7,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-08T23:32:07.651Z","etag":null,"topics":["assertj","assertj-assertions","javafx"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manuel-mauky.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-14T21:28:31.000Z","updated_at":"2024-07-21T10:56:44.000Z","dependencies_parsed_at":"2022-09-09T14:13:38.553Z","dependency_job_id":null,"html_url":"https://github.com/manuel-mauky/assertj-javafx","commit_stats":null,"previous_names":["lestard/assertj-javafx"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/manuel-mauky/assertj-javafx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuel-mauky%2Fassertj-javafx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuel-mauky%2Fassertj-javafx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuel-mauky%2Fassertj-javafx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuel-mauky%2Fassertj-javafx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manuel-mauky","download_url":"https://codeload.github.com/manuel-mauky/assertj-javafx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuel-mauky%2Fassertj-javafx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274231182,"owners_count":25245675,"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-09-08T02:00:09.813Z","response_time":121,"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":["assertj","assertj-assertions","javafx"],"created_at":"2024-08-03T18:00:36.632Z","updated_at":"2025-09-08T23:32:42.336Z","avatar_url":"https://github.com/manuel-mauky.png","language":"Java","funding_links":[],"categories":["Libraries, Tools and Projects"],"sub_categories":[],"readme":"# AssertJ Assertions for JavaFX\n\n[![Build Status](https://travis-ci.org/lestard/assertj-javafx.svg?branch=master)](https://travis-ci.org/lestard/assertj-javafx)\n\n\nThe goal of this project is to create AssertJ assertions for JavaFX (8).\n\n\n## Example\n\n```java\n\nimport javafx.beans.binding.Bindings;\nimport javafx.beans.binding.DoubleBinding;\nimport javafx.beans.property.DoubleProperty;\nimport javafx.beans.property.SimpleDoubleProperty;\nimport org.junit.Test;\n\nimport static eu.lestard.assertj.javafx.api.Assertions.assertThat;\nimport static org.assertj.core.api.Assertions.offset;\n\npublic class RadiusExample {\n\n    @Test\n    public void testCircleArea(){\n\n        DoubleProperty radius = new SimpleDoubleProperty();\n        DoubleBinding radiusSquared = radius.multiply(radius);\n\n        DoubleBinding circleArea = Bindings.multiply(Math.PI, radiusSquared);\n\n        radius.set(5);\n        assertThat(circleArea).hasValue(78.53, offset(0.01));\n\n        radius.set(12);\n        assertThat(circleArea).hasValue(452.4, offset(0.1));\n    }\n}\n\n```\n\n## How to Use\n\nGradle:\n\n```groovy\ndependencies {\n    testCompile 'eu.lestard:assertj-javafx:0.3.0'\n}\n```\n\nMaven:\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eeu.lestard\u003c/groupId\u003e\n    \u003cartifactId\u003eassertj-javafx\u003c/artifactId\u003e\n    \u003cversion\u003e0.3.0\u003c/version\u003e\n    \u003cscope\u003etest\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n\n## Use the current development version\n\nSnapshots of the current development version are available in the Sonatype OSS Snapshot repository.\nThey are created and deployed automatically by the Travis-CI on every commit.\n\nGradle:\n\n```groovy\n// add the sonatype snapshot repository\nrepositories {\n    maven {\n        url \"https://oss.sonatype.org/content/repositories/snapshots/\"\n    }\n}\n\ndependencies {\n    testCompile 'eu.lestard:assertj-javafx:0.4.0-SNAPSHOT'\n}\n\n```\n\n## Links\n[JavaDoc](https://lestard.github.io/assertj-javafx/javadoc/0.3.0/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuel-mauky%2Fassertj-javafx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanuel-mauky%2Fassertj-javafx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuel-mauky%2Fassertj-javafx/lists"}