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
0ed32b92
Kaydet (Commit)
0ed32b92
authored
Ock 21, 2003
tarafından
Lars Langhans
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
error message interpreter changed.
üst
f0c72aec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
3 deletions
+21
-3
TestShl2Runner.java
testshl2/source/testshlrunner/TestShl2Runner.java
+21
-3
No files found.
testshl2/source/testshlrunner/TestShl2Runner.java
Dosyayı görüntüle @
0ed32b92
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: TestShl2Runner.java,v $
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
* last change: $Author: lla $ $Date: 2003-01-21 13:
17:35
$
* last change: $Author: lla $ $Date: 2003-01-21 13:
21:47
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -220,7 +220,25 @@ class CurrentEntry
public
String
getState
()
{
// build the right State
return
"FAILED#HARDCODED#"
;
String
sAllIsRight
=
"PASSED#OK#"
;
ArrayList
sFailedStates
=
new
ArrayList
();
boolean
bFailed
=
false
;
for
(
int
i
=
0
;
i
<
m_sStates
.
size
();
i
++)
{
String
sStatus
=
(
String
)
m_sStates
.
get
(
i
);
if
(!
sStatus
.
equals
(
sAllIsRight
))
{
bFailed
=
true
;
sFailedStates
.
add
(
sStatus
);
}
}
if
(
bFailed
==
false
)
{
return
"PASSED#OK#"
;
}
// interpret the failures
return
"PASSED#FAILED#"
;
}
public
void
add
(
String
_sDate
,
String
_sClassName
,
String
_sMethodName
,
String
_sMethodTestName
,
String
_sState
,
String
_sComment
)
...
...
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