daml/compiler/damlc/tests/bond-trading/Test.daml

22 lines
523 B
Haskell

-- Copyright (c) 2019 The DAML Authors. All rights reserved.
-- SPDX-License-Identifier: Apache-2.0
-- Check that the interning tables don't contain duplicates:
-- @QUERY-LF .interned_strings // [] | (unique | length == length)
-- @QUERY-LF .interned_dotted_names // [] | (unique | length == length)
daml 1.2
module Test where
import Bond qualified
import Cash qualified
import Dvp qualified
import Helper qualified
import Setup qualified
main = scenario do
Bond.main
Cash.main
Setup.main
Dvp.main
Helper.main