OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bi_s
(Results
1 - 1
of
1
) sorted by null
/libcore/luni/src/test/java/libcore/java/math/
OldBigIntegerConstructorsTest.java
34
BigInteger
bi_s
= new BigInteger(s);
local
35
assertTrue("the BigInteger value is not initialized properly",
bi_s
.intValue() == 0);
36
assertEquals("the BigInteger value is not initialized properly",
bi_s
.toString(), s);
44
BigInteger
bi_s
= new BigInteger(s);
local
46
bi_s
.intValue() == Integer.MIN_VALUE);
47
assertEquals("the BigInteger value is not initialized properly",
bi_s
.toString(), s);
55
BigInteger
bi_s
= new BigInteger(s);
local
57
bi_s
.intValue() == Integer.MAX_VALUE);
58
assertEquals("the BigInteger value is not initialized properly",
bi_s
.toString(), s);
Completed in 55 milliseconds