Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
e19cd715
Kaydet (Commit)
e19cd715
authored
Haz 02, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve test failure diagnostics
Change-Id: I42d5d56b3f01ef49eb62d784c1a80fbc9972f7d8
üst
263b4b99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
_XAccessibleComponent.java
...o/tests/java/ifc/accessibility/_XAccessibleComponent.java
+6
-4
No files found.
qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
Dosyayı görüntüle @
e19cd715
...
@@ -412,11 +412,13 @@ public class _XAccessibleComponent extends MultiMethodTest {
...
@@ -412,11 +412,13 @@ public class _XAccessibleComponent extends MultiMethodTest {
public
void
_getLocation
()
{
public
void
_getLocation
()
{
requiredMethod
(
"getBounds()"
);
requiredMethod
(
"getBounds()"
);
boolean
result
=
true
;
Point
loc
=
oObj
.
getLocation
();
Point
loc
=
oObj
.
getLocation
();
boolean
result
=
loc
.
X
==
bounds
.
X
&&
loc
.
Y
==
bounds
.
Y
;
result
&=
((
loc
.
X
==
bounds
.
X
)
&&
(
loc
.
Y
==
bounds
.
Y
));
if
(!
result
)
{
log
.
println
(
"loc.X="
+
loc
.
X
+
" vs. bounds.X="
+
bounds
.
X
+
", loc.Y="
+
loc
.
Y
+
" vs. bounds.Y="
+
bounds
.
Y
);
}
tRes
.
tested
(
"getLocation()"
,
result
);
tRes
.
tested
(
"getLocation()"
,
result
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment