blob: a9bb844d7677f9dd0910a04d85943483b72896f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// See LICENSE for license details.
package firrtlTests
import firrtl.Namespace
import firrtl.testutils._
class NamespaceSpec extends FirrtlFlatSpec {
"A Namespace" should "not allow collisions" in {
val namespace = Namespace()
namespace.newName("foo") should be ("foo")
namespace.newName("foo") should be ("foo_0")
}
it should "start temps with a suffix of 0" in {
Namespace().newTemp.last should be ('0')
}
it should "handle multiple prefixes with independent suffixes" in {
val namespace = Namespace()
namespace.newName("foo") should be ("foo")
namespace.newName("foo") should be ("foo_0")
namespace.newName("bar") should be ("bar")
namespace.newName("bar") should be ("bar_0")
}
}
|