Exemple #1
0
        public void NotBrokenWHenHasBothStops()
        {
            var stop = new ResolvedAssociationStop(TestStop, TestStop);

            Assert.False(stop.IsBroken);
        }
Exemple #2
0
        public void IsBrokenWhenNoStopInAssociatedService()
        {
            var stop = new ResolvedAssociationStop(TestStop, null);

            Assert.True(stop.IsBroken);
        }