コード例 #1
0
        public void GetObservationById()
        {
            //Arrange
            var service = new ObservationDataService(repository);

            //Act
            var observation = service.GetObservationById(1);

            //Assert
            Assert.IsNotNull(observation);
        }