コード例 #1
0
ファイル: mpd_read_write_test.go プロジェクト: tvoli/go-dash
func (s *MPDSuite) TestFullOnDemandProfileWriteToString() {
	m := OnDemandProfile()
	assert.NotNil(s.T(), m)
	xmlStr, err := m.WriteToString()
	assert.Nil(s.T(), err)
	expectedXML := testfixtures.LoadFixture("fixtures/ondemand_profile.mpd")
	assert.Equal(s.T(), (string)(expectedXML), xmlStr)
}
コード例 #2
0
ファイル: mpd_read_write_test.go プロジェクト: tvoli/go-dash
func (s *MPDReadWriteSuite) TestReadFromStringOnDemandProfile() {
	xmlStr := testfixtures.LoadFixture("fixtures/ondemand_profile.mpd")
	m, err := ReadFromString(xmlStr)
	assert.NotNil(s.T(), m)
	assert.Nil(s.T(), err)
}