Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
refs/heads/master
/
.
/
docs
/
bugpattern
/
TruthConstantAsserts.md
blob: 4f7e1dd6cd53e2af9f1dcc22dedb3298ab042331 [
file
] [
view
] [
edit
]
The
arguments to assertThat method
is
a constant
.
It
should be a variable
or
a
method invocation
.
For
eg
.
switch
assertThat
(
1
).
isEqualTo
(
methodCall
())
to
assertThat
(
methodCall
()).
isEqualTo
(
1
).